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 javafx.event.Event
Event related to TableView2 filtering.
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final javafx.event.EventType<FilterEvent>
    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, javafx.event.EventTarget target)
    Construct a new Event with the specified event source and target, with type FILTER_EVENT.
  • Method Summary

    Modifier and Type
    Method
    Description
    static <C> javafx.event.EventType<FilterEvent<C>>
     

    Methods inherited from class javafx.event.Event

    clone, consume, copyFor, fireEvent, getEventType, getTarget, isConsumed

    Methods inherited from class java.util.EventObject

    toString

    Methods inherited from class java.lang.Object

    equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • ANY

      public static final javafx.event.EventType<FilterEvent> ANY
      Common supertype for all sort event types.
  • Constructor Details

    • FilterEvent

      public FilterEvent(C source, javafx.event.EventTarget target)
      Construct a new Event with the specified event source and target, with type FILTER_EVENT. If the source or target is set to null, it is replaced by the NULL_SOURCE_TARGET value.
      Parameters:
      source - the event source which sent the event
      target - the event target to associate with the event
  • Method Details

    • filterEvent

      public static <C> javafx.event.EventType<FilterEvent<C>> filterEvent()
    • getSource

      public C getSource()
      Overrides:
      getSource in class EventObject