API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.swing.event. MenuKeyEvent View Source
Author(s)
Georges Saab
Since
Version
1.14 11/17/05
Serial
Hierarchy
 Object
      EventObject
          AWTEvent
              ComponentEvent
                  InputEvent
                      KeyEvent
                          MenuKeyEvent
Implements
Subclasses
Description
public class MenuKeyEvent
  MenuKeyEvent is used to notify interested parties that the menu element has received a KeyEvent forwarded to it in a menu tree.
See also:   
Constructors
public MenuKeyEvent (Component source, int id, long when, int modifiers, int keyCode, char keyChar, MenuElement p, MenuSelectionManager m)
  Constructs a MenuKeyEvent 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 () [Inherited From KeyEvent]
  Returns the character associated with the key in this event.
public int getKeyCode () [Inherited From KeyEvent]
  Returns the integer keyCode associated with the key in this event.
public int getKeyLocation () [Inherited From KeyEvent]
  Returns the location of the key that originated this key event.
publicstatic String getKeyModifiersText (int modifiers) [Inherited From KeyEvent]
  Returns a String describing the modifier key(s), such as "Shift", or "Ctrl+Shift".
publicstatic String getKeyText (int keyCode) [Inherited From KeyEvent]
  Returns a String describing the keyCode, such as "HOME", "F1" or "A".
public MenuSelectionManager getMenuSelectionManager ()
  Returns the current menu selection manager.
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 MenuElement getPath ()
  Returns the path to the menu item referenced by this event.
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 () [Inherited From KeyEvent]
  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 () [Inherited From KeyEvent]
  Returns a parameter string identifying this event.
public void setKeyChar (char keyChar) [Inherited From KeyEvent]
  Set the keyChar value to indicate a logical character.
public void setKeyCode (int keyCode) [Inherited From KeyEvent]
  Set the keyCode value to indicate a physical key.
@Deprecated
public void setModifiers (int modifiers) [Inherited From KeyEvent]
  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" [Inherited From KeyEvent]
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.
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.
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.
publicfinalstatic long KEY_EVENT_MASK = "8" [Inherited From AWTEvent]
The event mask for selecting key events.
publicfinalstatic int KEY_FIRST = "400" [Inherited From KeyEvent]
The first number in the range of ids used for key events.
publicfinalstatic int KEY_LAST = "402" [Inherited From KeyEvent]
The last number in the range of ids used for key events.
publicfinalstatic int KEY_LOCATION_LEFT = "2" [Inherited From KeyEvent]
  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" [Inherited From KeyEvent]
  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" [Inherited From KeyEvent]
  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" [Inherited From KeyEvent]
  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" [Inherited From KeyEvent]
  A constant indicating that the keyLocation is indeterminate or not relevant.
publicfinalstatic int KEY_PRESSED = "401" [Inherited From KeyEvent]
  The "key pressed" event.
publicfinalstatic int KEY_RELEASED = "402" [Inherited From KeyEvent]
  The "key released" event.
publicfinalstatic int KEY_TYPED = "400" [Inherited From KeyEvent]
  The "key typed" event.
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.
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.
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" [Inherited From KeyEvent]
VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39)
publicfinalstatic int VK_1 = "49" [Inherited From KeyEvent]
publicfinalstatic int VK_2 = "50" [Inherited From KeyEvent]
publicfinalstatic int VK_3 = "51" [Inherited From KeyEvent]
publicfinalstatic int VK_4 = "52" [Inherited From KeyEvent]
publicfinalstatic int VK_5 = "53" [Inherited From KeyEvent]
publicfinalstatic int VK_6 = "54" [Inherited From KeyEvent]
publicfinalstatic int VK_7 = "55" [Inherited From KeyEvent]
publicfinalstatic int VK_8 = "56" [Inherited From KeyEvent]
publicfinalstatic int VK_9 = "57" [Inherited From KeyEvent]
publicfinalstatic int VK_A = "65" [Inherited From KeyEvent]
VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A)
publicfinalstatic int VK_ACCEPT = "30" [Inherited From KeyEvent]
Constant for the Accept or Commit function key.
publicfinalstatic int VK_ADD = "107" [Inherited From KeyEvent]
publicfinalstatic int VK_AGAIN = "65481" [Inherited From KeyEvent]
 
publicfinalstatic int VK_ALL_CANDIDATES = "256" [Inherited From KeyEvent]
  Constant for the All Candidates function key.
publicfinalstatic int VK_ALPHANUMERIC = "240" [Inherited From KeyEvent]
  Constant for the Alphanumeric function key.
publicfinalstatic int VK_ALT = "18" [Inherited From KeyEvent]
publicfinalstatic int VK_ALT_GRAPH = "65406" [Inherited From KeyEvent]
  Constant for the AltGraph function key.
publicfinalstatic int VK_AMPERSAND = "150" [Inherited From KeyEvent]
 
publicfinalstatic int VK_ASTERISK = "151" [Inherited From KeyEvent]
 
publicfinalstatic int VK_AT = "512" [Inherited From KeyEvent]
  Constant for the "@" key.
publicfinalstatic int VK_B = "66" [Inherited From KeyEvent]
publicfinalstatic int VK_BACK_QUOTE = "192" [Inherited From KeyEvent]
publicfinalstatic int VK_BACK_SLASH = "92" [Inherited From KeyEvent]
Constant for the back slash key, "\"
publicfinalstatic int VK_BACK_SPACE = "8" [Inherited From KeyEvent]
publicfinalstatic int VK_BEGIN = "65368" [Inherited From KeyEvent]
  Constant for the Begin key.
publicfinalstatic int VK_BRACELEFT = "161" [Inherited From KeyEvent]
 
publicfinalstatic int VK_BRACERIGHT = "162" [Inherited From KeyEvent]
 
publicfinalstatic int VK_C = "67" [Inherited From KeyEvent]
publicfinalstatic int VK_CANCEL = "3" [Inherited From KeyEvent]
publicfinalstatic int VK_CAPS_LOCK = "20" [Inherited From KeyEvent]
publicfinalstatic int VK_CIRCUMFLEX = "514" [Inherited From KeyEvent]
  Constant for the "^" key.
publicfinalstatic int VK_CLEAR = "12" [Inherited From KeyEvent]
publicfinalstatic int VK_CLOSE_BRACKET = "93" [Inherited From KeyEvent]
Constant for the close bracket key, "]"
publicfinalstatic int VK_CODE_INPUT = "258" [Inherited From KeyEvent]
  Constant for the Code Input function key.
publicfinalstatic int VK_COLON = "513" [Inherited From KeyEvent]
  Constant for the ":" key.
publicfinalstatic int VK_COMMA = "44" [Inherited From KeyEvent]
Constant for the comma key, ","
publicfinalstatic int VK_COMPOSE = "65312" [Inherited From KeyEvent]
  Constant for the Compose function key.
publicfinalstatic int VK_CONTEXT_MENU = "525" [Inherited From KeyEvent]
  Constant for the Microsoft Windows Context Menu key.
publicfinalstatic int VK_CONTROL = "17" [Inherited From KeyEvent]
publicfinalstatic int VK_CONVERT = "28" [Inherited From KeyEvent]
Constant for the Convert function key.
publicfinalstatic int VK_COPY = "65485" [Inherited From KeyEvent]
 
publicfinalstatic int VK_CUT = "65489" [Inherited From KeyEvent]
 
publicfinalstatic int VK_D = "68" [Inherited From KeyEvent]
publicfinalstatic int VK_DEAD_ABOVEDOT = "134" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_ABOVERING = "136" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_ACUTE = "129" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_BREVE = "133" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_CARON = "138" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_CEDILLA = "139" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_CIRCUMFLEX = "130" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_DIAERESIS = "135" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_DOUBLEACUTE = "137" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_GRAVE = "128" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_IOTA = "141" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_MACRON = "132" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_OGONEK = "140" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_SEMIVOICED_SOUND = "143" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_TILDE = "131" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DEAD_VOICED_SOUND = "142" [Inherited From KeyEvent]
 
publicfinalstatic int VK_DECIMAL = "110" [Inherited From KeyEvent]
publicfinalstatic int VK_DELETE = "127" [Inherited From KeyEvent]
publicfinalstatic int VK_DIVIDE = "111" [Inherited From KeyEvent]
publicfinalstatic int VK_DOLLAR = "515" [Inherited From KeyEvent]
  Constant for the "$" key.
publicfinalstatic int VK_DOWN = "40" [Inherited From KeyEvent]
  Constant for the non-numpad down arrow key.
publicfinalstatic int VK_E = "69" [Inherited From KeyEvent]
publicfinalstatic int VK_END = "35" [Inherited From KeyEvent]
publicfinalstatic int VK_ENTER = "10" [Inherited From KeyEvent]
publicfinalstatic int VK_EQUALS = "61" [Inherited From KeyEvent]
Constant for the equals key, "="
publicfinalstatic int VK_ESCAPE = "27" [Inherited From KeyEvent]
publicfinalstatic int VK_EURO_SIGN = "516" [Inherited From KeyEvent]
  Constant for the Euro currency sign key.
publicfinalstatic int VK_EXCLAMATION_MARK = "517" [Inherited From KeyEvent]
  Constant for the "!" key.
publicfinalstatic int VK_F = "70" [Inherited From KeyEvent]
publicfinalstatic int VK_F1 = "112" [Inherited From KeyEvent]
Constant for the F1 function key.
publicfinalstatic int VK_F10 = "121" [Inherited From KeyEvent]
Constant for the F10 function key.
publicfinalstatic int VK_F11 = "122" [Inherited From KeyEvent]
Constant for the F11 function key.
publicfinalstatic int VK_F12 = "123" [Inherited From KeyEvent]
Constant for the F12 function key.
publicfinalstatic int VK_F13 = "61440" [Inherited From KeyEvent]
  Constant for the F13 function key.
publicfinalstatic int VK_F14 = "61441" [Inherited From KeyEvent]
  Constant for the F14 function key.
publicfinalstatic int VK_F15 = "61442" [Inherited From KeyEvent]
  Constant for the F15 function key.
publicfinalstatic int VK_F16 = "61443" [Inherited From KeyEvent]
  Constant for the F16 function key.
publicfinalstatic int VK_F17 = "61444" [Inherited From KeyEvent]
  Constant for the F17 function key.
publicfinalstatic int VK_F18 = "61445" [Inherited From KeyEvent]
  Constant for the F18 function key.
publicfinalstatic int VK_F19 = "61446" [Inherited From KeyEvent]
  Constant for the F19 function key.
publicfinalstatic int VK_F2 = "113" [Inherited From KeyEvent]
Constant for the F2 function key.
publicfinalstatic int VK_F20 = "61447" [Inherited From KeyEvent]
  Constant for the F20 function key.
publicfinalstatic int VK_F21 = "61448" [Inherited From KeyEvent]
  Constant for the F21 function key.
publicfinalstatic int VK_F22 = "61449" [Inherited From KeyEvent]
  Constant for the F22 function key.
publicfinalstatic int VK_F23 = "61450" [Inherited From KeyEvent]
  Constant for the F23 function key.
publicfinalstatic int VK_F24 = "61451" [Inherited From KeyEvent]
  Constant for the F24 function key.
publicfinalstatic int VK_F3 = "114" [Inherited From KeyEvent]
Constant for the F3 function key.
publicfinalstatic int VK_F4 = "115" [Inherited From KeyEvent]
Constant for the F4 function key.
publicfinalstatic int VK_F5 = "116" [Inherited From KeyEvent]
Constant for the F5 function key.
publicfinalstatic int VK_F6 = "117" [Inherited From KeyEvent]
Constant for the F6 function key.
publicfinalstatic int VK_F7 = "118" [Inherited From KeyEvent]
Constant for the F7 function key.
publicfinalstatic int VK_F8 = "119" [Inherited From KeyEvent]
Constant for the F8 function key.
publicfinalstatic int VK_F9 = "120" [Inherited From KeyEvent]
Constant for the F9 function key.
publicfinalstatic int VK_FINAL = "24" [Inherited From KeyEvent]
publicfinalstatic int VK_FIND = "65488" [Inherited From KeyEvent]
 
publicfinalstatic int VK_FULL_WIDTH = "243" [Inherited From KeyEvent]
  Constant for the Full-Width Characters function key.
publicfinalstatic int VK_G = "71" [Inherited From KeyEvent]
publicfinalstatic int VK_GREATER = "160" [Inherited From KeyEvent]
 
publicfinalstatic int VK_H = "72" [Inherited From KeyEvent]
publicfinalstatic int VK_HALF_WIDTH = "244" [Inherited From KeyEvent]
  Constant for the Half-Width Characters function key.
publicfinalstatic int VK_HELP = "156" [Inherited From KeyEvent]
publicfinalstatic int VK_HIRAGANA = "242" [Inherited From KeyEvent]
  Constant for the Hiragana function key.
publicfinalstatic int VK_HOME = "36" [Inherited From KeyEvent]
publicfinalstatic int VK_I = "73" [Inherited From KeyEvent]
publicfinalstatic int VK_INPUT_METHOD_ON_OFF = "263" [Inherited From KeyEvent]
  Constant for the input method on/off key.
publicfinalstatic int VK_INSERT = "155" [Inherited From KeyEvent]
publicfinalstatic int VK_INVERTED_EXCLAMATION_MARK = "518" [Inherited From KeyEvent]
  Constant for the inverted exclamation mark key.
publicfinalstatic int VK_J = "74" [Inherited From KeyEvent]
publicfinalstatic int VK_JAPANESE_HIRAGANA = "260" [Inherited From KeyEvent]
  Constant for the Japanese-Hiragana function key.
publicfinalstatic int VK_JAPANESE_KATAKANA = "259" [Inherited From KeyEvent]
  Constant for the Japanese-Katakana function key.
publicfinalstatic int VK_JAPANESE_ROMAN = "261" [Inherited From KeyEvent]
  Constant for the Japanese-Roman function key.
publicfinalstatic int VK_K = "75" [Inherited From KeyEvent]
publicfinalstatic int VK_KANA = "21" [Inherited From KeyEvent]
publicfinalstatic int VK_KANA_LOCK = "262" [Inherited From KeyEvent]
  Constant for the locking Kana function key.
publicfinalstatic int VK_KANJI = "25" [Inherited From KeyEvent]
publicfinalstatic int VK_KATAKANA = "241" [Inherited From KeyEvent]
  Constant for the Katakana function key.
publicfinalstatic int VK_KP_DOWN = "225" [Inherited From KeyEvent]
  Constant for the numeric keypad down arrow key.
publicfinalstatic int VK_KP_LEFT = "226" [Inherited From KeyEvent]
  Constant for the numeric keypad left arrow key.
publicfinalstatic int VK_KP_RIGHT = "227" [Inherited From KeyEvent]
  Constant for the numeric keypad right arrow key.
publicfinalstatic int VK_KP_UP = "224" [Inherited From KeyEvent]
  Constant for the numeric keypad up arrow key.
publicfinalstatic int VK_L = "76" [Inherited From KeyEvent]
publicfinalstatic int VK_LEFT = "37" [Inherited From KeyEvent]
  Constant for the non-numpad left arrow key.
publicfinalstatic int VK_LEFT_PARENTHESIS = "519" [Inherited From KeyEvent]
  Constant for the "(" key.
publicfinalstatic int VK_LESS = "153" [Inherited From KeyEvent]
 
publicfinalstatic int VK_M = "77" [Inherited From KeyEvent]
publicfinalstatic int VK_META = "157" [Inherited From KeyEvent]
publicfinalstatic int VK_MINUS = "45" [Inherited From KeyEvent]
  Constant for the minus key, "-"
publicfinalstatic int VK_MODECHANGE = "31" [Inherited From KeyEvent]
publicfinalstatic int VK_MULTIPLY = "106" [Inherited From KeyEvent]
publicfinalstatic int VK_N = "78" [Inherited From KeyEvent]
publicfinalstatic int VK_NONCONVERT = "29" [Inherited From KeyEvent]
Constant for the Don't Convert function key.
publicfinalstatic int VK_NUM_LOCK = "144" [Inherited From KeyEvent]
publicfinalstatic int VK_NUMBER_SIGN = "520" [Inherited From KeyEvent]
  Constant for the "#" key.
publicfinalstatic int VK_NUMPAD0 = "96" [Inherited From KeyEvent]
publicfinalstatic int VK_NUMPAD1 = "97" [Inherited From KeyEvent]
publicfinalstatic int VK_NUMPAD2 = "98" [Inherited From KeyEvent]
publicfinalstatic int VK_NUMPAD3 = "99" [Inherited From KeyEvent]
publicfinalstatic int VK_NUMPAD4 = "100" [Inherited From KeyEvent]
publicfinalstatic int VK_NUMPAD5 = "101" [Inherited From KeyEvent]
publicfinalstatic int VK_NUMPAD6 = "102" [Inherited From KeyEvent]
publicfinalstatic int VK_NUMPAD7 = "103" [Inherited From KeyEvent]
publicfinalstatic int VK_NUMPAD8 = "104" [Inherited From KeyEvent]
publicfinalstatic int VK_NUMPAD9 = "105" [Inherited From KeyEvent]
publicfinalstatic int VK_O = "79" [Inherited From KeyEvent]
publicfinalstatic int VK_OPEN_BRACKET = "91" [Inherited From KeyEvent]
Constant for the open bracket key, "["
publicfinalstatic int VK_P = "80" [Inherited From KeyEvent]
publicfinalstatic int VK_PAGE_DOWN = "34" [Inherited From KeyEvent]
publicfinalstatic int VK_PAGE_UP = "33" [Inherited From KeyEvent]
publicfinalstatic int VK_PASTE = "65487" [Inherited From KeyEvent]
 
publicfinalstatic int VK_PAUSE = "19" [Inherited From KeyEvent]
publicfinalstatic int VK_PERIOD = "46" [Inherited From KeyEvent]
Constant for the period key, "."
publicfinalstatic int VK_PLUS = "521" [Inherited From KeyEvent]
  Constant for the "+" key.
publicfinalstatic int VK_PREVIOUS_CANDIDATE = "257" [Inherited From KeyEvent]
  Constant for the Previous Candidate function key.
publicfinalstatic int VK_PRINTSCREEN = "154" [Inherited From KeyEvent]
publicfinalstatic int VK_PROPS = "65482" [Inherited From KeyEvent]
 
publicfinalstatic int VK_Q = "81" [Inherited From KeyEvent]
publicfinalstatic int VK_QUOTE = "222" [Inherited From KeyEvent]
publicfinalstatic int VK_QUOTEDBL = "152" [Inherited From KeyEvent]
 
publicfinalstatic int VK_R = "82" [Inherited From KeyEvent]
publicfinalstatic int VK_RIGHT = "39" [Inherited From KeyEvent]
  Constant for the non-numpad right arrow key.
publicfinalstatic int VK_RIGHT_PARENTHESIS = "522" [Inherited From KeyEvent]
  Constant for the ")" key.
publicfinalstatic int VK_ROMAN_CHARACTERS = "245" [Inherited From KeyEvent]
  Constant for the Roman Characters function key.
publicfinalstatic int VK_S = "83" [Inherited From KeyEvent]
publicfinalstatic int VK_SCROLL_LOCK = "145" [Inherited From KeyEvent]
publicfinalstatic int VK_SEMICOLON = "59" [Inherited From KeyEvent]
Constant for the semicolon key, ";"
publicfinalstatic int VK_SEPARATER = "108" [Inherited From KeyEvent]
  This constant is obsolete, and is included only for backwards compatibility.
publicfinalstatic int VK_SEPARATOR = "108" [Inherited From KeyEvent]
  Constant for the Numpad Separator key.
publicfinalstatic int VK_SHIFT = "16" [Inherited From KeyEvent]
publicfinalstatic int VK_SLASH = "47" [Inherited From KeyEvent]
Constant for the forward slash key, "/"
publicfinalstatic int VK_SPACE = "32" [Inherited From KeyEvent]
publicfinalstatic int VK_STOP = "65480" [Inherited From KeyEvent]
 
publicfinalstatic int VK_SUBTRACT = "109" [Inherited From KeyEvent]
publicfinalstatic int VK_T = "84" [Inherited From KeyEvent]
publicfinalstatic int VK_TAB = "9" [Inherited From KeyEvent]
publicfinalstatic int VK_U = "85" [Inherited From KeyEvent]
publicfinalstatic int VK_UNDEFINED = "0" [Inherited From KeyEvent]
  This value is used to indicate that the keyCode is unknown.
publicfinalstatic int VK_UNDERSCORE = "523" [Inherited From KeyEvent]
  Constant for the "_" key.
publicfinalstatic int VK_UNDO = "65483" [Inherited From KeyEvent]
 
publicfinalstatic int VK_UP = "38" [Inherited From KeyEvent]
  Constant for the non-numpad up arrow key.
publicfinalstatic int VK_V = "86" [Inherited From KeyEvent]
publicfinalstatic int VK_W = "87" [Inherited From KeyEvent]
publicfinalstatic int VK_WINDOWS = "524" [Inherited From KeyEvent]
  Constant for the Microsoft Windows "Windows" key.
publicfinalstatic int VK_X = "88" [Inherited From KeyEvent]
publicfinalstatic int VK_Y = "89" [Inherited From KeyEvent]
publicfinalstatic int VK_Z = "90" [Inherited From KeyEvent]
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