API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.awt.event. KeyEvent View Source
Author(s)
Carl Quinn
Amy Fowler
Norbert Lindenberg
Since
1.1
Version
1.79 10/19/06
Serial
Hierarchy
 Object
      EventObject
          AWTEvent
              ComponentEvent
                  InputEvent
                      KeyEvent
Implements
Subclasses
Description
public class KeyEvent
  An event which indicates that a keystroke occurred in a component.
Constructors
@Deprecated
public KeyEvent (Component source, int id, long when, int modifiers, int keyCode)
public KeyEvent (Component source, int id, long when, int modifiers, int keyCode, char keyChar)
  Constructs a KeyEvent object.
public KeyEvent (Component source, int id, long when, int modifiers, int keyCode, char keyChar, int keyLocation)
private KeyEvent (Component source, int id, long when, int modifiers, int keyCode, char keyChar, int keyLocation, boolean isProxyActive)
  Constructs a KeyEvent object.
Methods
Hide/Show inherited methods
public void consume () [Inherited From InputEvent]
Consumes this event so that it will not be processed in the default manner by the source which originated it.
public Component getComponent () [Inherited From ComponentEvent]
  Returns the originator of the event.
public int getID () [Inherited From AWTEvent]
Returns the event type.
public char getKeyChar ()
  Returns the character associated with the key in this event.
public int getKeyCode ()
  Returns the integer keyCode associated with the key in this event.
public int getKeyLocation ()
  Returns the location of the key that originated this key event.
publicstatic String getKeyModifiersText (int modifiers)
  Returns a String describing the modifier key(s), such as "Shift", or "Ctrl+Shift".
publicstatic String getKeyText (int keyCode)
  Returns a String describing the keyCode, such as "HOME", "F1" or "A".
public int getModifiers () [Inherited From InputEvent]
Returns the modifier mask for this event.
public int getModifiersEx () [Inherited From InputEvent]
  Returns the extended modifier mask for this event.
publicstatic String getModifiersExText (int modifiers) [Inherited From InputEvent]
  Returns a String describing the extended modifier keys and mouse buttons, such as "Shift", "Button1", or "Ctrl+Shift".
public Object getSource () [Inherited From EventObject]
  The object on which the Event initially occurred.
public long getWhen () [Inherited From InputEvent]
Returns the timestamp of when this event occurred.
public boolean isActionKey ()
  Returns whether the key in this event is an "action" key.
public boolean isAltDown () [Inherited From InputEvent]
Returns whether or not the Alt modifier is down on this event.
public boolean isAltGraphDown () [Inherited From InputEvent]
Returns whether or not the AltGraph modifier is down on this event.
public boolean isConsumed () [Inherited From InputEvent]
  Returns whether or not this event has been consumed.
public boolean isControlDown () [Inherited From InputEvent]
Returns whether or not the Control modifier is down on this event.
public boolean isMetaDown () [Inherited From InputEvent]
Returns whether or not the Meta modifier is down on this event.
public boolean isShiftDown () [Inherited From InputEvent]
Returns whether or not the Shift modifier is down on this event.
public String paramString () [Overrides ComponentEvent]
  Returns a parameter string identifying this event.
public void setKeyChar (char keyChar)
  Set the keyChar value to indicate a logical character.
public void setKeyCode (int keyCode)
  Set the keyCode value to indicate a physical key.
@Deprecated
public void setModifiers (int modifiers)
  Set the modifiers to indicate additional keys that were held down (e.g.
public void setSource (Object newSource) [Inherited From AWTEvent]
  Retargets an event to a new source.
public String toString () [Inherited From AWTEvent]
Returns a String representation of this object.
Fields
Hide/Show inherited fields
publicfinalstatic long ACTION_EVENT_MASK = "128" [Inherited From AWTEvent]
The event mask for selecting action events.
publicfinalstatic long ADJUSTMENT_EVENT_MASK = "256" [Inherited From AWTEvent]
The event mask for selecting adjustment events.
publicfinalstatic int ALT_DOWN_MASK = "512" [Inherited From InputEvent]
  The Alt key extended modifier constant.
publicfinalstatic int ALT_GRAPH_DOWN_MASK = "8192" [Inherited From InputEvent]
  The AltGraph key extended modifier constant.
publicfinalstatic int ALT_GRAPH_MASK = "32" [Inherited From InputEvent]
The AltGraph key modifier constant.
publicfinalstatic int ALT_MASK = "8" [Inherited From InputEvent]
  The Alt key modifier constant.
publicfinalstatic int BUTTON1_DOWN_MASK = "1024" [Inherited From InputEvent]
  The Mouse Button1 extended modifier constant.
publicfinalstatic int BUTTON1_MASK = "16" [Inherited From InputEvent]
  The Mouse Button1 modifier constant.
publicfinalstatic int BUTTON2_DOWN_MASK = "2048" [Inherited From InputEvent]
  The Mouse Button2 extended modifier constant.
publicfinalstatic int BUTTON2_MASK = "8" [Inherited From InputEvent]
  The Mouse Button2 modifier constant.
publicfinalstatic int BUTTON3_DOWN_MASK = "4096" [Inherited From InputEvent]
  The Mouse Button3 extended modifier constant.
publicfinalstatic int BUTTON3_MASK = "4" [Inherited From InputEvent]
  The Mouse Button3 modifier constant.
publicfinalstatic char CHAR_UNDEFINED = "65535"
KEY_PRESSED and KEY_RELEASED events which do not map to a valid Unicode character use this for the keyChar value.
publicfinalstatic long COMPONENT_EVENT_MASK = "1" [Inherited From AWTEvent]
The event mask for selecting component events.
publicfinalstatic int COMPONENT_FIRST = "100" [Inherited From ComponentEvent]
The first number in the range of ids used for component events.
publicfinalstatic int COMPONENT_HIDDEN = "103" [Inherited From ComponentEvent]
This event indicates that the component was rendered invisible.
publicfinalstatic int COMPONENT_LAST = "103" [Inherited From ComponentEvent]
The last number in the range of ids used for component events.
publicfinalstatic int COMPONENT_MOVED = "100" [Inherited From ComponentEvent]
This event indicates that the component's position changed.
publicfinalstatic int COMPONENT_RESIZED = "101" [Inherited From ComponentEvent]
This event indicates that the component's size changed.
publicfinalstatic int COMPONENT_SHOWN = "102" [Inherited From ComponentEvent]
This event indicates that the component was made visible.
protected boolean consumed [Inherited From AWTEvent]
  Controls whether or not the event is sent back down to the peer once the source has processed it - false means it's sent to the peer; true means it's not.
publicfinalstatic long CONTAINER_EVENT_MASK = "2" [Inherited From AWTEvent]
The event mask for selecting container events.
publicfinalstatic int CTRL_DOWN_MASK = "128" [Inherited From InputEvent]
  The Control key extended modifier constant.
publicfinalstatic int CTRL_MASK = "2" [Inherited From InputEvent]
  The Control key modifier constant.
pack-privatefinalstatic int FIRST_HIGH_BIT = "16384" [Inherited From InputEvent]
publicfinalstatic long FOCUS_EVENT_MASK = "4" [Inherited From AWTEvent]
The event mask for selecting focus events.
publicfinalstatic long HIERARCHY_BOUNDS_EVENT_MASK = "65536" [Inherited From AWTEvent]
The event mask for selecting hierarchy bounds events.
publicfinalstatic long HIERARCHY_EVENT_MASK = "32768" [Inherited From AWTEvent]
The event mask for selecting hierarchy events.
pack-privatefinalstatic int HIGH_MODIFIERS = "-16384" [Inherited From InputEvent]
protected int id [Inherited From AWTEvent]
  The event's id.
publicfinalstatic long INPUT_METHOD_EVENT_MASK = "2048" [Inherited From AWTEvent]
The event mask for selecting input method events.
publicfinalstatic long INVOCATION_EVENT_MASK = "16384" [Inherited From AWTEvent]
The event mask for selecting invocation events.
publicfinalstatic long ITEM_EVENT_MASK = "512" [Inherited From AWTEvent]
The event mask for selecting item events.
pack-privatefinalstatic int JDK_1_3_MODIFIERS = "63" [Inherited From InputEvent]
publicfinalstatic long KEY_EVENT_MASK = "8" [Inherited From AWTEvent]
The event mask for selecting key events.
publicfinalstatic int KEY_FIRST = "400"
The first number in the range of ids used for key events.
publicfinalstatic int KEY_LAST = "402"
The last number in the range of ids used for key events.
publicfinalstatic int KEY_LOCATION_LEFT = "2"
  A constant indicating that the key pressed or released is in the left key location (there is more than one possible location for this key).
publicfinalstatic int KEY_LOCATION_NUMPAD = "4"
  A constant indicating that the key event originated on the numeric keypad or with a virtual key corresponding to the numeric keypad.
publicfinalstatic int KEY_LOCATION_RIGHT = "3"
  A constant indicating that the key pressed or released is in the right key location (there is more than one possible location for this key).
publicfinalstatic int KEY_LOCATION_STANDARD = "1"
  A constant indicating that the key pressed or released is not distinguished as the left or right version of a key, and did not originate on the numeric keypad (or did not originate with a virtual key corresponding to the numeric keypad).
publicfinalstatic int KEY_LOCATION_UNKNOWN = "0"
  A constant indicating that the keyLocation is indeterminate or not relevant.
publicfinalstatic int KEY_PRESSED = "401"
  The "key pressed" event.
publicfinalstatic int KEY_RELEASED = "402"
  The "key released" event.
publicfinalstatic int KEY_TYPED = "400"
  The "key typed" event.
pack-private char keyChar
  keyChar is a valid unicode character that is fired by a key or a key combination on a keyboard.
pack-private int keyCode
  The unique value assigned to each of the keys on the keyboard.
pack-private int keyLocation
  The location of the key on the keyboard.
publicfinalstatic int META_DOWN_MASK = "256" [Inherited From InputEvent]
  The Meta key extended modifier constant.
publicfinalstatic int META_MASK = "4" [Inherited From InputEvent]
  The Meta key modifier constant.
pack-private int modifiers [Inherited From InputEvent]
  The state of the modifier mask at the time the input event was fired.
publicfinalstatic long MOUSE_EVENT_MASK = "16" [Inherited From AWTEvent]
The event mask for selecting mouse events.
publicfinalstatic long MOUSE_MOTION_EVENT_MASK = "32" [Inherited From AWTEvent]
The event mask for selecting mouse motion events.
publicfinalstatic long MOUSE_WHEEL_EVENT_MASK = "131072" [Inherited From AWTEvent]
  The event mask for selecting mouse wheel events.
publicfinalstatic long PAINT_EVENT_MASK = "8192" [Inherited From AWTEvent]
The event mask for selecting paint events.
publicfinalstatic int RESERVED_ID_MAX = "1999" [Inherited From AWTEvent]
  The maximum value for reserved AWT event IDs.
pack-privatefinalstatic long serialVersionUID = "-2482525981698309786" [Inherited From InputEvent]
publicfinalstatic int SHIFT_DOWN_MASK = "64" [Inherited From InputEvent]
  The Shift key extended modifier constant.
publicfinalstatic int SHIFT_MASK = "1" [Inherited From InputEvent]
  The Shift key modifier constant.
protectedtransient Object source [Inherited From EventObject]
The object on which the Event initially occurred.
publicfinalstatic long TEXT_EVENT_MASK = "1024" [Inherited From AWTEvent]
The event mask for selecting text events.
publicfinalstatic int VK_0 = "48"
VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39)
publicfinalstatic int VK_1 = "49"
publicfinalstatic int VK_2 = "50"
publicfinalstatic int VK_3 = "51"
publicfinalstatic int VK_4 = "52"
publicfinalstatic int VK_5 = "53"
publicfinalstatic int VK_6 = "54"
publicfinalstatic int VK_7 = "55"
publicfinalstatic int VK_8 = "56"
publicfinalstatic int VK_9 = "57"
publicfinalstatic int VK_A = "65"
VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A)
publicfinalstatic int VK_ACCEPT = "30"
Constant for the Accept or Commit function key.
publicfinalstatic int VK_ADD = "107"
publicfinalstatic int VK_AGAIN = "65481"
 
publicfinalstatic int VK_ALL_CANDIDATES = "256"
  Constant for the All Candidates function key.
publicfinalstatic int VK_ALPHANUMERIC = "240"
  Constant for the Alphanumeric function key.
publicfinalstatic int VK_ALT = "18"
publicfinalstatic int VK_ALT_GRAPH = "65406"
  Constant for the AltGraph function key.
publicfinalstatic int VK_AMPERSAND = "150"
 
publicfinalstatic int VK_ASTERISK = "151"
 
publicfinalstatic int VK_AT = "512"
  Constant for the "@" key.
publicfinalstatic int VK_B = "66"
publicfinalstatic int VK_BACK_QUOTE = "192"
publicfinalstatic int VK_BACK_SLASH = "92"
Constant for the back slash key, "\"
publicfinalstatic int VK_BACK_SPACE = "8"
publicfinalstatic int VK_BEGIN = "65368"
  Constant for the Begin key.
publicfinalstatic int VK_BRACELEFT = "161"
 
publicfinalstatic int VK_BRACERIGHT = "162"
 
publicfinalstatic int VK_C = "67"
publicfinalstatic int VK_CANCEL = "3"
publicfinalstatic int VK_CAPS_LOCK = "20"
publicfinalstatic int VK_CIRCUMFLEX = "514"
  Constant for the "^" key.
publicfinalstatic int VK_CLEAR = "12"
publicfinalstatic int VK_CLOSE_BRACKET = "93"
Constant for the close bracket key, "]"
publicfinalstatic int VK_CODE_INPUT = "258"
  Constant for the Code Input function key.
publicfinalstatic int VK_COLON = "513"
  Constant for the ":" key.
publicfinalstatic int VK_COMMA = "44"
Constant for the comma key, ","
publicfinalstatic int VK_COMPOSE = "65312"
  Constant for the Compose function key.
publicfinalstatic int VK_CONTEXT_MENU = "525"
  Constant for the Microsoft Windows Context Menu key.
publicfinalstatic int VK_CONTROL = "17"
publicfinalstatic int VK_CONVERT = "28"
Constant for the Convert function key.
publicfinalstatic int VK_COPY = "65485"
 
publicfinalstatic int VK_CUT = "65489"
 
publicfinalstatic int VK_D = "68"
publicfinalstatic int VK_DEAD_ABOVEDOT = "134"
 
publicfinalstatic int VK_DEAD_ABOVERING = "136"
 
publicfinalstatic int VK_DEAD_ACUTE = "129"
 
publicfinalstatic int VK_DEAD_BREVE = "133"
 
publicfinalstatic int VK_DEAD_CARON = "138"
 
publicfinalstatic int VK_DEAD_CEDILLA = "139"
 
publicfinalstatic int VK_DEAD_CIRCUMFLEX = "130"
 
publicfinalstatic int VK_DEAD_DIAERESIS = "135"
 
publicfinalstatic int VK_DEAD_DOUBLEACUTE = "137"
 
publicfinalstatic int VK_DEAD_GRAVE = "128"
 
publicfinalstatic int VK_DEAD_IOTA = "141"
 
publicfinalstatic int VK_DEAD_MACRON = "132"
 
publicfinalstatic int VK_DEAD_OGONEK = "140"
 
publicfinalstatic int VK_DEAD_SEMIVOICED_SOUND = "143"
 
publicfinalstatic int VK_DEAD_TILDE = "131"
 
publicfinalstatic int VK_DEAD_VOICED_SOUND = "142"
 
publicfinalstatic int VK_DECIMAL = "110"
publicfinalstatic int VK_DELETE = "127"
publicfinalstatic int VK_DIVIDE = "111"
publicfinalstatic int VK_DOLLAR = "515"
  Constant for the "$" key.
publicfinalstatic int VK_DOWN = "40"
  Constant for the non-numpad down arrow key.
publicfinalstatic int VK_E = "69"
publicfinalstatic int VK_END = "35"
publicfinalstatic int VK_ENTER = "10"
publicfinalstatic int VK_EQUALS = "61"
Constant for the equals key, "="
publicfinalstatic int VK_ESCAPE = "27"
publicfinalstatic int VK_EURO_SIGN = "516"
  Constant for the Euro currency sign key.
publicfinalstatic int VK_EXCLAMATION_MARK = "517"
  Constant for the "!" key.
publicfinalstatic int VK_F = "70"
publicfinalstatic int VK_F1 = "112"
Constant for the F1 function key.
publicfinalstatic int VK_F10 = "121"
Constant for the F10 function key.
publicfinalstatic int VK_F11 = "122"
Constant for the F11 function key.
publicfinalstatic int VK_F12 = "123"
Constant for the F12 function key.
publicfinalstatic int VK_F13 = "61440"
  Constant for the F13 function key.
publicfinalstatic int VK_F14 = "61441"
  Constant for the F14 function key.
publicfinalstatic int VK_F15 = "61442"
  Constant for the F15 function key.
publicfinalstatic int VK_F16 = "61443"
  Constant for the F16 function key.
publicfinalstatic int VK_F17 = "61444"
  Constant for the F17 function key.
publicfinalstatic int VK_F18 = "61445"
  Constant for the F18 function key.
publicfinalstatic int VK_F19 = "61446"
  Constant for the F19 function key.
publicfinalstatic int VK_F2 = "113"
Constant for the F2 function key.
publicfinalstatic int VK_F20 = "61447"
  Constant for the F20 function key.
publicfinalstatic int VK_F21 = "61448"
  Constant for the F21 function key.
publicfinalstatic int VK_F22 = "61449"
  Constant for the F22 function key.
publicfinalstatic int VK_F23 = "61450"
  Constant for the F23 function key.
publicfinalstatic int VK_F24 = "61451"
  Constant for the F24 function key.
publicfinalstatic int VK_F3 = "114"
Constant for the F3 function key.
publicfinalstatic int VK_F4 = "115"
Constant for the F4 function key.
publicfinalstatic int VK_F5 = "116"
Constant for the F5 function key.
publicfinalstatic int VK_F6 = "117"
Constant for the F6 function key.
publicfinalstatic int VK_F7 = "118"
Constant for the F7 function key.
publicfinalstatic int VK_F8 = "119"
Constant for the F8 function key.
publicfinalstatic int VK_F9 = "120"
Constant for the F9 function key.
publicfinalstatic int VK_FINAL = "24"
publicfinalstatic int VK_FIND = "65488"
 
publicfinalstatic int VK_FULL_WIDTH = "243"
  Constant for the Full-Width Characters function key.
publicfinalstatic int VK_G = "71"
publicfinalstatic int VK_GREATER = "160"
 
publicfinalstatic int VK_H = "72"
publicfinalstatic int VK_HALF_WIDTH = "244"
  Constant for the Half-Width Characters function key.
publicfinalstatic int VK_HELP = "156"
publicfinalstatic int VK_HIRAGANA = "242"
  Constant for the Hiragana function key.
publicfinalstatic int VK_HOME = "36"
publicfinalstatic int VK_I = "73"
publicfinalstatic int VK_INPUT_METHOD_ON_OFF = "263"
  Constant for the input method on/off key.
publicfinalstatic int VK_INSERT = "155"
publicfinalstatic int VK_INVERTED_EXCLAMATION_MARK = "518"
  Constant for the inverted exclamation mark key.
publicfinalstatic int VK_J = "74"
publicfinalstatic int VK_JAPANESE_HIRAGANA = "260"
  Constant for the Japanese-Hiragana function key.
publicfinalstatic int VK_JAPANESE_KATAKANA = "259"
  Constant for the Japanese-Katakana function key.
publicfinalstatic int VK_JAPANESE_ROMAN = "261"
  Constant for the Japanese-Roman function key.
publicfinalstatic int VK_K = "75"
publicfinalstatic int VK_KANA = "21"
publicfinalstatic int VK_KANA_LOCK = "262"
  Constant for the locking Kana function key.
publicfinalstatic int VK_KANJI = "25"
publicfinalstatic int VK_KATAKANA = "241"
  Constant for the Katakana function key.
publicfinalstatic int VK_KP_DOWN = "225"
  Constant for the numeric keypad down arrow key.
publicfinalstatic int VK_KP_LEFT = "226"
  Constant for the numeric keypad left arrow key.
publicfinalstatic int VK_KP_RIGHT = "227"
  Constant for the numeric keypad right arrow key.
publicfinalstatic int VK_KP_UP = "224"
  Constant for the numeric keypad up arrow key.
publicfinalstatic int VK_L = "76"
publicfinalstatic int VK_LEFT = "37"
  Constant for the non-numpad left arrow key.
publicfinalstatic int VK_LEFT_PARENTHESIS = "519"
  Constant for the "(" key.
publicfinalstatic int VK_LESS = "153"
 
publicfinalstatic int VK_M = "77"
publicfinalstatic int VK_META = "157"
publicfinalstatic int VK_MINUS = "45"
  Constant for the minus key, "-"
publicfinalstatic int VK_MODECHANGE = "31"
publicfinalstatic int VK_MULTIPLY = "106"
publicfinalstatic int VK_N = "78"
publicfinalstatic int VK_NONCONVERT = "29"
Constant for the Don't Convert function key.
publicfinalstatic int VK_NUM_LOCK = "144"
publicfinalstatic int VK_NUMBER_SIGN = "520"
  Constant for the "#" key.
publicfinalstatic int VK_NUMPAD0 = "96"
publicfinalstatic int VK_NUMPAD1 = "97"
publicfinalstatic int VK_NUMPAD2 = "98"
publicfinalstatic int VK_NUMPAD3 = "99"
publicfinalstatic int VK_NUMPAD4 = "100"
publicfinalstatic int VK_NUMPAD5 = "101"
publicfinalstatic int VK_NUMPAD6 = "102"
publicfinalstatic int VK_NUMPAD7 = "103"
publicfinalstatic int VK_NUMPAD8 = "104"
publicfinalstatic int VK_NUMPAD9 = "105"
publicfinalstatic int VK_O = "79"
publicfinalstatic int VK_OPEN_BRACKET = "91"
Constant for the open bracket key, "["
publicfinalstatic int VK_P = "80"
publicfinalstatic int VK_PAGE_DOWN = "34"
publicfinalstatic int VK_PAGE_UP = "33"
publicfinalstatic int VK_PASTE = "65487"
 
publicfinalstatic int VK_PAUSE = "19"
publicfinalstatic int VK_PERIOD = "46"
Constant for the period key, "."
publicfinalstatic int VK_PLUS = "521"
  Constant for the "+" key.
publicfinalstatic int VK_PREVIOUS_CANDIDATE = "257"
  Constant for the Previous Candidate function key.
publicfinalstatic int VK_PRINTSCREEN = "154"
publicfinalstatic int VK_PROPS = "65482"
 
publicfinalstatic int VK_Q = "81"
publicfinalstatic int VK_QUOTE = "222"
publicfinalstatic int VK_QUOTEDBL = "152"
 
publicfinalstatic int VK_R = "82"
publicfinalstatic int VK_RIGHT = "39"
  Constant for the non-numpad right arrow key.
publicfinalstatic int VK_RIGHT_PARENTHESIS = "522"
  Constant for the ")" key.
publicfinalstatic int VK_ROMAN_CHARACTERS = "245"
  Constant for the Roman Characters function key.
publicfinalstatic int VK_S = "83"
publicfinalstatic int VK_SCROLL_LOCK = "145"
publicfinalstatic int VK_SEMICOLON = "59"
Constant for the semicolon key, ";"
publicfinalstatic int VK_SEPARATER = "108"
  This constant is obsolete, and is included only for backwards compatibility.
publicfinalstatic int VK_SEPARATOR = "108"
  Constant for the Numpad Separator key.
publicfinalstatic int VK_SHIFT = "16"
publicfinalstatic int VK_SLASH = "47"
Constant for the forward slash key, "/"
publicfinalstatic int VK_SPACE = "32"
publicfinalstatic int VK_STOP = "65480"
 
publicfinalstatic int VK_SUBTRACT = "109"
publicfinalstatic int VK_T = "84"
publicfinalstatic int VK_TAB = "9"
publicfinalstatic int VK_U = "85"
publicfinalstatic int VK_UNDEFINED = "0"
  This value is used to indicate that the keyCode is unknown.
publicfinalstatic int VK_UNDERSCORE = "523"
  Constant for the "_" key.
publicfinalstatic int VK_UNDO = "65483"
 
publicfinalstatic int VK_UP = "38"
  Constant for the non-numpad up arrow key.
publicfinalstatic int VK_V = "86"
publicfinalstatic int VK_W = "87"
publicfinalstatic int VK_WINDOWS = "524"
  Constant for the Microsoft Windows "Windows" key.
publicfinalstatic int VK_X = "88"
publicfinalstatic int VK_Y = "89"
publicfinalstatic int VK_Z = "90"
pack-private long when [Inherited From InputEvent]
  The input event's Time stamp in UTC format.
publicfinalstatic long WINDOW_EVENT_MASK = "64" [Inherited From AWTEvent]
The event mask for selecting window events.
publicfinalstatic long WINDOW_FOCUS_EVENT_MASK = "524288" [Inherited From AWTEvent]
  The event mask for selecting window focus events.
publicfinalstatic long WINDOW_STATE_EVENT_MASK = "262144" [Inherited From AWTEvent]
  The event mask for selecting window state events.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar