edu.neu.ccs.gui
Class WindowActionEvent
java.lang.Object
java.util.EventObject
java.awt.AWTEvent
java.awt.event.ActionEvent
edu.neu.ccs.gui.WindowActionEvent
- All Implemented Interfaces:
- Serializable
- public class WindowActionEvent
- extends ActionEvent
Class of events representing an action
triggered by a window event.
- Since:
- 1.0.1
- Version:
- 2.2
- See Also:
- Serialized Form
|
Field Summary |
protected WindowEvent |
event
The window 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 |
|
Constructor Summary |
WindowActionEvent(WindowEvent evt,
Window source)
Constructs a window action event
triggered by the given window event
generated by the given source object. |
WindowActionEvent(WindowEvent evt,
Window source,
int id,
String command)
Constructs a window action event
triggered by the given window event
generated by the given source object
with the given identifier and command name. |
event
protected WindowEvent event
- The window event that triggered this action event.
WindowActionEvent
public WindowActionEvent(WindowEvent evt,
Window source)
- Constructs a window action event
triggered by the given window event
generated by the given source object.
- Parameters:
evt - the triggering window eventsource - the object that originated the event
WindowActionEvent
public WindowActionEvent(WindowEvent evt,
Window source,
int id,
String command)
- Constructs a window action event
triggered by the given window event
generated by the given source object
with the given identifier and command name.
- Parameters:
evt - the triggering window 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
getWindowEvent
public WindowEvent getWindowEvent()
- Returns the window event that triggered
this window action event.