JIDE 3.5.15

com.jidesoft.grid
Class FilterEvent

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

public class FilterEvent
extends AWTEvent

An AWTEvent that adds support for Filter objects as the event source.

See Also:
Serialized Form

Field Summary
static int FILTER_CONTENT_CHANGED
          This event is delivered when the Filter's filtering criteria is changed.
static int FILTER_DISABLED
          This event is delivered when the Filter is disabled.
static int FILTER_ENABLED
          This event is delivered when the Filter is enabled.
static int FILTER_EVENT_FIRST
          The first number in the range of IDs used for Filter events.
static int FILTER_EVENT_LAST
          The last number in the range of IDs used for Filter events.
static int FILTER_NAME_CHANGED
          This event is delivered when the Filter's name is changed.
 
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
FilterEvent(Object source, int id)
          Constructs an FilterEvent object.
 
Method Summary
 
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

FILTER_EVENT_FIRST

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

See Also:
Constant Field Values

FILTER_EVENT_LAST

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

See Also:
Constant Field Values

FILTER_ENABLED

public static final int FILTER_ENABLED
This event is delivered when the Filter is enabled.

See Also:
Constant Field Values

FILTER_DISABLED

public static final int FILTER_DISABLED
This event is delivered when the Filter is disabled.

See Also:
Constant Field Values

FILTER_NAME_CHANGED

public static final int FILTER_NAME_CHANGED
This event is delivered when the Filter's name is changed.

See Also:
Constant Field Values

FILTER_CONTENT_CHANGED

public static final int FILTER_CONTENT_CHANGED
This event is delivered when the Filter's filtering criteria is changed.

See Also:
Constant Field Values
Constructor Detail

FilterEvent

public FilterEvent(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

JIDE 3.5.15