edu.neu.ccs.gui
Class ComponentActionEvent
java.lang.Object
java.util.EventObject
java.awt.AWTEvent
java.awt.event.ActionEvent
edu.neu.ccs.gui.ComponentActionEvent
- All Implemented Interfaces:
- Serializable
- public class ComponentActionEvent
- extends ActionEvent
Class of events representing an action
triggered by a component event.
- Since:
- 2.2
- Version:
- 2.2
- See Also:
- Serialized Form
|
Field Summary |
protected ComponentEvent |
event
The component event that triggered this action event. |
| 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 |
event
protected ComponentEvent event
- The component event that triggered this action event.
ComponentActionEvent
public ComponentActionEvent(ComponentEvent evt,
Object source)
- Constructs a component action event
triggered by the given component event
generated by the given source object.
- Parameters:
evt - the triggering component eventsource - the object that originated the event
ComponentActionEvent
public ComponentActionEvent(ComponentEvent evt,
Object source,
int id,
String command)
- Constructs a component action event
triggered by the given component event
generated by the given source object
with the given identifier and command name.
- Parameters:
evt - the triggering component eventsource - the object that originated the eventid - an integer that identifies the eventcommand - a string that may specify a command
(possibly one of several) associated with the event
getComponentEvent
public ComponentEvent getComponentEvent()
- Returns the component event that triggered
this component action event.