|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjavax.swing.AbstractAction
edu.neu.ccs.gui.KeyAction
Encapsulates an action that is performed
as a result of a KeyEvent.
| Nested Class Summary |
| Nested classes inherited from class javax.swing.AbstractAction |
|
| Field Summary | |
protected int |
keyCodeOrChar
The key code or character that triggers this action. |
| Fields inherited from class javax.swing.AbstractAction |
changeSupport, enabled |
| Fields inherited from interface javax.swing.Action |
ACCELERATOR_KEY, ACTION_COMMAND_KEY, DEFAULT, LONG_DESCRIPTION, MNEMONIC_KEY, NAME, SHORT_DESCRIPTION, SMALL_ICON |
| Constructor Summary | |
KeyAction()
Constructs a key action with no name or icon that is performed when any key is pressed, released, or typed. |
|
KeyAction(int key)
Constructs a key action with no name or icon that is performed when the given key is pressed, released, or typed. |
|
KeyAction(int key,
String name)
Constructs a key action with the given name but no icon that is performed when the given key is pressed, released, or typed. |
|
KeyAction(int key,
String name,
Icon icon)
Constructs a key action with the given name and icon that is performed when the given key is pressed, released, or typed. |
|
KeyAction(String name)
Constructs a key action with the given name but no icon that is performed when any key is pressed, released, or typed. |
|
KeyAction(String name,
Icon icon)
Constructs a key action with the given name and icon that is performed when any key is pressed, released, or typed. |
|
| Method Summary | |
void |
actionPerformed(ActionEvent evt)
Performs this action by calling the method of this class
intended to perform tasks requiring information
contained in the KeyEvent triggering this action. |
abstract void |
keyActionPerformed(KeyEvent kevt)
Performs the tasks encapsulated by this action. |
| Methods inherited from class javax.swing.AbstractAction |
addPropertyChangeListener, clone, firePropertyChange, getKeys, getPropertyChangeListeners, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled |
| Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
protected int keyCodeOrChar
| Constructor Detail |
public KeyAction()
public KeyAction(int key)
key - the key code or character that triggers this actionpublic KeyAction(String name)
name - the name for this action
public KeyAction(int key,
String name)
key - the key code or character that triggers this actionname - the name for this action
public KeyAction(String name,
Icon icon)
name - the name for this actionicon - the icon for this action
public KeyAction(int key,
String name,
Icon icon)
key - the key code or character that triggers this actionname - the name for this actionicon - the icon for this action| Method Detail |
public final void actionPerformed(ActionEvent evt)
keyActionPerformed method of this class
intended to perform tasks requiring information
contained in the KeyEvent triggering this action.
If the given event is not a
KeyActionEvent,
this action is not performed.
evt - an object encapsulating an event
that triggered this actionpublic abstract void keyActionPerformed(KeyEvent kevt)
kevt - the key event that triggered this action
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||