|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.awt.AWTKeyStroke
public class AWTKeyStroke
An AWTKeyStroke
represents a key action on the
keyboard, or equivalent input device. AWTKeyStroke
s
can correspond to only a press or release of a
particular key, just as KEY_PRESSED
and
KEY_RELEASED
KeyEvent
s do;
alternately, they can correspond to typing a specific Java character, just
as KEY_TYPED
KeyEvent
s do.
In all cases, AWTKeyStroke
s can specify modifiers
(alt, shift, control, meta, or a combination thereof) which must be present
during the action for an exact match.
AWTKeyStrokes
are immutable, and are intended
to be unique. Client code should never create an
AWTKeyStroke
on its own, but should instead use
a variant of getAWTKeyStroke
. Client use of these factory
methods allows the AWTKeyStroke
implementation
to cache and share instances efficiently.
getAWTKeyStroke(char)
,
Serialized FormConstructor Summary | |
---|---|
protected |
AWTKeyStroke()
Constructs an AWTKeyStroke with default values. |
protected |
AWTKeyStroke(char keyChar,
int keyCode,
int modifiers,
boolean onKeyRelease)
Constructs an AWTKeyStroke with the specified
values. |
Method Summary | |
---|---|
boolean |
equals(Object anObject)
Returns true if this object is identical to the specified object. |
static AWTKeyStroke |
getAWTKeyStroke(char keyChar)
Returns a shared instance of an AWTKeyStroke
that represents a KEY_TYPED event for the
specified character. |
static AWTKeyStroke |
getAWTKeyStroke(Character keyChar,
int modifiers)
Returns a shared instance of an AWTKeyStroke ,
given a Character object and a set of modifiers. |
static AWTKeyStroke |
getAWTKeyStroke(int keyCode,
int modifiers)
Returns a shared instance of an AWTKeyStroke ,
given a numeric key code and a set of modifiers. |
static AWTKeyStroke |
getAWTKeyStroke(int keyCode,
int modifiers,
boolean onKeyRelease)
Returns a shared instance of an AWTKeyStroke ,
given a numeric key code and a set of modifiers, specifying
whether the key is activated when it is pressed or released. |
static AWTKeyStroke |
getAWTKeyStroke(String s)
Parses a string and returns an AWTKeyStroke . |
static AWTKeyStroke |
getAWTKeyStrokeForEvent(KeyEvent anEvent)
Returns an AWTKeyStroke which represents the
stroke which generated a given KeyEvent . |
char |
getKeyChar()
Returns the character for this AWTKeyStroke . |
int |
getKeyCode()
Returns the numeric key code for this AWTKeyStroke . |
int |
getKeyEventType()
Returns the type of KeyEvent which corresponds to
this AWTKeyStroke . |
int |
getModifiers()
Returns the modifier keys for this AWTKeyStroke . |
int |
hashCode()
Returns a numeric value for this object that is likely to be unique, making it a good choice as the index value in a hash table. |
boolean |
isOnKeyRelease()
Returns whether this AWTKeyStroke represents a key release. |
protected Object |
readResolve()
Returns a cached instance of AWTKeyStroke (or a subclass of
AWTKeyStroke ) which is equal to this instance. |
protected static void |
registerSubclass(Class<?> subclass)
Registers a new class which the factory methods in AWTKeyStroke will use when generating new
instances of AWTKeyStroke s. |
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 |
Constructor Detail |
---|
protected AWTKeyStroke()
AWTKeyStroke
with default values.
The default values used are:
Property | Default Value |
---|---|
Key Char | KeyEvent.CHAR_UNDEFINED |
Key Code | KeyEvent.VK_UNDEFINED |
Modifiers | none |
On key release? | false |
AWTKeyStroke
s should not be constructed
by client code. Use a variant of getAWTKeyStroke
instead.
getAWTKeyStroke(char)
protected AWTKeyStroke(char keyChar, int keyCode, int modifiers, boolean onKeyRelease)
AWTKeyStroke
with the specified
values. AWTKeyStroke
s should not be constructed
by client code. Use a variant of getAWTKeyStroke
instead.
keyChar
- the character value for a keyboard keykeyCode
- the key code for this AWTKeyStroke
modifiers
- a bitwise-ored combination of any modifiersonKeyRelease
- true
if this
AWTKeyStroke
corresponds
to a key release; false
otherwisegetAWTKeyStroke(char)
Method Detail |
---|
protected static void registerSubclass(Class<?> subclass)
AWTKeyStroke
will use when generating new
instances of AWTKeyStroke
s. After invoking this
method, the factory methods will return instances of the specified
Class. The specified Class must be either AWTKeyStroke
or derived from AWTKeyStroke
, and it must have a
no-arg constructor. The constructor can be of any accessibility,
including private
. This operation
flushes the current AWTKeyStroke
cache.
subclass
- the new Class of which the factory methods should create
instances
IllegalArgumentException
- if subclass is null
,
or if subclass does not have a no-arg constructor
ClassCastException
- if subclass is not
AWTKeyStroke
, or a class derived from
AWTKeyStroke
public static AWTKeyStroke getAWTKeyStroke(char keyChar)
AWTKeyStroke
that represents a KEY_TYPED
event for the
specified character.
keyChar
- the character value for a keyboard key
AWTKeyStroke
object for that keypublic static AWTKeyStroke getAWTKeyStroke(