Whole document tree
javax.swing
|
Method Summary | |
boolean |
equals(Object anObject)
Returns true if this object is identical to the specified object. |
char |
getKeyChar()
Returns the character defined by this KeyStroke object. |
int |
getKeyCode()
Returns the numeric keycode defined by this KeyStroke object. |
static KeyStroke |
getKeyStroke(char keyChar)
Return a shared instance of a key stroke that is activated when the key is pressed (that is, a KeyStroke for the KEY_TYPED event). |
static KeyStroke |
getKeyStroke(Character keyChar,
int modifiers)
Return a shared instance of a key stroke, given a character object and a set of modifiers. |
static KeyStroke |
getKeyStroke(char keyChar,
boolean onKeyRelease)
Deprecated. use getKeyStroke(char) |
static KeyStroke |
getKeyStroke(int keyCode,
int modifiers)
Return a shared instance of a key stroke given a char code and a set of modifiers -- the key is activated when it is pressed. |
static KeyStroke |
getKeyStroke(int keyCode,
int modifiers,
boolean onKeyRelease)
Return a shared instance of a key stroke given a numeric keycode and a set of modifiers, specifying whether the key is activated when it is pressed or released. |
static KeyStroke |
getKeyStroke(String s)
Parse a string and return a KeyStroke. |
static KeyStroke |
getKeyStrokeForEvent(KeyEvent anEvent)
Return a keystroke from an event. |
int |
getModifiers()
Returns the modifier keys defined by this KeyStroke object. |
int |
hashCode()
Returns a numeric value for this object that is likely to be reasonably unique, so it can be used as the index value in a Hashtable. |
boolean |
isOnKeyRelease()
Returns true if this keystroke is active on key release. |
String |
toString()
Returns a string that displays and identifies this object's properties. |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Method Detail |
public static KeyStroke getKeyStroke(char keyChar)
keyChar
- the character value for a keyboard keypublic static KeyStroke getKeyStroke(char keyChar, boolean onKeyRelease)
keyChar
- the character value for a keyboard keyonKeyRelease
- a boolean value. When true, specifies that
the key is active when it is released.public static KeyStroke getKeyStroke(Character keyChar, int modifiers)
keyChar
- the character object for a keyboard character.modifiers
- an int specifying any combination of the key modifiers.public static KeyStroke getKeyStroke(int keyCode, int modifiers, boolean onKeyRelease)
The "virtual key" constants defined in java.awt.event.KeyEvent can be used to specify the key code. For example:
keyCode
- an int specifying the numeric code for a keyboard keymodifiers
- an int specifying any combination of the key modifiers.onKeyRelease
- a boolean value. When true, specifies that
the key is active when it is released.KeyEvent
,
Event
public static KeyStroke getKeyStroke(int keyCode, int modifiers)
The "virtual key" constants defined in java.awt.event.KeyEvent can be used to specify the key code. For example:
keyCode
- an int specifying the numeric code for a keyboard keymodifiers
- an int specifying any combination of the key modifiers.KeyEvent
public static KeyStroke getKeyStrokeForEvent(KeyEvent anEvent)
This method obtains the keyChar from a KeyTyped event, and the keyCode from a KeyPressed or KeyReleased event, so you the type of event doesn't matter.
anEvent
- the KeyEvent to obtain the KeyStroke frompublic static KeyStroke getKeyStroke(String s)
<modifiers>* (<typedID> | <pressedReleasedID>) modifiers := shift | control | meta | alt | button1 | button2 | button3 typedID := typed <typedKey> typedKey := string of length 1 giving unicode character. pressedReleasedID := (pressed | released)? key key := KeyEvent keycode name, i.e. the name following "VK_".If typed, pressed or released is not specified, pressed is assumed. Here are some examples:
"INSERT" => new KeyStroke(0, KeyEvent.VK_INSERT); "control DELETE" => new KeyStroke(InputEvent.CTRL_MASK, KeyEvent.VK_DELETE); "alt shift X" => new KeyStroke(InputEvent.ALT_MASK | InputEvent.SHIFT_MASK, KeyEvent.VK_X); "alt shift released X" => new KeyStroke(InputEvent.ALT_MASK | InputEvent.SHIFT_MASK, KeyEvent.VK_X, true); "typed a" => new KeyStroke('a');For backward compatability, this will return null if
s
is
not in the above format.public char getKeyChar()
getKeyStroke(char)
public int getKeyCode()
getKeyStroke(int,int)
public int getModifiers()
getKeyStroke(int,int)
public boolean isOnKeyRelease()
getKeyStroke(int,int,boolean)
public int hashCode()
Hashtable
public boolean equals(Object anObject)
anObject
- the Object to compare this object topublic String toString()
|
JavaTM 2 Platform Std. Ed. v1.3.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.