JIDE 3.5.15

com.jidesoft.list
Class FilterableListModelEvent

java.lang.Object
  extended by java.util.EventObject
      extended by java.awt.AWTEvent
          extended by com.jidesoft.list.FilterableListModelEvent
All Implemented Interfaces:
Serializable

public class FilterableListModelEvent
extends AWTEvent

An AWTEvent that adds support for FilterableListModel objects as the event source when filter is added or removed.

See Also:
Serialized Form

Field Summary
static int FILTER_ADDED
          This event is delivered when a Filter is added.
static int FILTER_REMOVED
          This event is delivered when a Filter is removed.
static int FILTERABLE_LIST_MODEL_EVENT_FIRST
          The first number in the range of IDs used for FilterableListModel events.
static int FILTERABLE_LIST_MODEL_EVENT_LAST
          The last number in the range of IDs used for FilterableListModel events.
 
Fields inherited from class java.awt.AWTEvent
ACTION_EVENT_MASK, ADJUSTMENT_EVENT_MASK, COMPONENT_EVENT_MASK, consumed, CONTAINER_EVENT_MASK, FOCUS_EVENT_MASK, HIERARCHY_BOUNDS_EVENT_MASK, HIERARCHY_EVENT_MASK, id, INPUT_METHOD_EVENT_MASK, INVOCATION_EVENT_MASK, ITEM_EVENT_MASK, KEY_EVENT_MASK, MOUSE_EVENT_MASK, MOUSE_MOTION_EVENT_MASK, MOUSE_WHEEL_EVENT_MASK, PAINT_EVENT_MASK, RESERVED_ID_MAX, TEXT_EVENT_MASK, WINDOW_EVENT_MASK, WINDOW_FOCUS_EVENT_MASK, WINDOW_STATE_EVENT_MASK
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
FilterableListModelEvent(Object source, int id)
          Constructs an FilterEvent object.
FilterableListModelEvent(Object source, int id, Filter filter)
           
 
Method Summary
 Filter getFilter()
           
 
Methods inherited from class java.awt.AWTEvent
consume, getID, isConsumed, paramString, setSource, toString
 
Methods inherited from class java.util.EventObject
getSource
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

FILTERABLE_LIST_MODEL_EVENT_FIRST

public static final int FILTERABLE_LIST_MODEL_EVENT_FIRST
The first number in the range of IDs used for FilterableListModel events.

See Also:
Constant Field Values

FILTERABLE_LIST_MODEL_EVENT_LAST

public static final int FILTERABLE_LIST_MODEL_EVENT_LAST
The last number in the range of IDs used for FilterableListModel events.

See Also:
Constant Field Values

FILTER_ADDED

public static final int FILTER_ADDED
This event is delivered when a Filter is added.

See Also:
Constant Field Values

FILTER_REMOVED

public static final int FILTER_REMOVED
This event is delivered when a Filter is removed.

See Also:
Constant Field Values
Constructor Detail

FilterableListModelEvent

public FilterableListModelEvent(Object source,
                                int id)
Constructs an FilterEvent object.

Parameters:
source - the Filter object that originated the event
id - an integer indicating the type of event

FilterableListModelEvent

public FilterableListModelEvent(Object source,
                                int id,
                                Filter filter)
Method Detail

getFilter

public Filter getFilter()

JIDE 3.5.15