Package org.jdesktop.swingx.decorator
Class PipelineEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.jdesktop.swingx.decorator.PipelineEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class PipelineEvent extends java.util.EventObjectDefines an event that encapsulates changes to a pipeline.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static intCONTENTS_CHANGEDIdentifies one or more changes in the pipeline.static intSORT_ORDER_CHANGEDIdentifies a order change of the interactive sorter.
-
Constructor Summary
Constructors Constructor Description PipelineEvent(java.lang.Object source, int type)Constructs a PipelineEvent object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetType()Returns the event type.java.lang.StringtoString()Returns a string representation of this event.
-
-
-
Field Detail
-
CONTENTS_CHANGED
public static final int CONTENTS_CHANGED
Identifies one or more changes in the pipeline.- See Also:
- Constant Field Values
-
SORT_ORDER_CHANGED
public static final int SORT_ORDER_CHANGED
Identifies a order change of the interactive sorter.- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
public int getType()
Returns the event type. The possible values are:- Returns:
- an int representing the type value
-
toString
public java.lang.String toString()
Returns a string representation of this event. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations. The returned string may be empty but may not benull.- Overrides:
toStringin classjava.util.EventObject- Returns:
- a string representation of this event.
-
-