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