- java.lang.Object
-
- java.util.EventObject
-
- javafx.event.Event
-
- org.controlsfx.control.tableview2.event.FilterEvent<C>
-
- Type Parameters:
C
- The event source
- All Implemented Interfaces:
Serializable
,Cloneable
public class FilterEvent<C> extends Event
Event related toTableView2
filtering.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static EventType<FilterEvent>
ANY
Common supertype for all sort event types.-
Fields inherited from class javafx.event.Event
consumed, eventType, NULL_SOURCE_TARGET, target
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description FilterEvent(C source, EventTarget target)
Construct a newEvent
with the specified event source and target, with typeFILTER_EVENT
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <C> EventType<FilterEvent<C>>
filterEvent()
C
getSource()
-
Methods inherited from class javafx.event.Event
clone, consume, copyFor, fireEvent, getEventType, getTarget, isConsumed
-
Methods inherited from class java.util.EventObject
toString
-
-
-
-
Field Detail
-
ANY
public static final EventType<FilterEvent> ANY
Common supertype for all sort event types.
-
-
Constructor Detail
-
FilterEvent
public FilterEvent(C source, EventTarget target)
Construct a newEvent
with the specified event source and target, with typeFILTER_EVENT
. If the source or target is set tonull
, it is replaced by theNULL_SOURCE_TARGET
value.- Parameters:
source
- the event source which sent the eventtarget
- the event target to associate with the event
-
-
Method Detail
-
filterEvent
public static <C> EventType<FilterEvent<C>> filterEvent()
-
getSource
public C getSource()
- Overrides:
getSource
in classEventObject
-
-