Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.awt.AWTKeyStroke

Uses of AWTKeyStroke in java.awt
 

Fields in java.awt declared as AWTKeyStroke
private static AWTKeyStroke AWTKeyStroke.recent
          The most recently generated keystroke, or null.
private  AWTKeyStroke DefaultKeyboardFocusManager.waitForKeyStroke
          This flag indicates for which focus traversal key release event we possibly wait, before letting any more KEY_TYPED events through.
 

Methods in java.awt that return AWTKeyStroke
static AWTKeyStroke AWTKeyStroke.getAWTKeyStroke(char keyChar)
          Returns a keystroke representing a typed character.
static AWTKeyStroke AWTKeyStroke.getAWTKeyStroke(java.lang.Character keyChar, int modifiers)
          Returns a keystroke representing a typed character with the given modifiers.
static AWTKeyStroke AWTKeyStroke.getAWTKeyStroke(int keyCode, int modifiers, boolean release)
          Returns a keystroke representing a pressed or released key event, with the given modifiers.
static AWTKeyStroke AWTKeyStroke.getAWTKeyStroke(int keyCode, int modifiers)
          Returns a keystroke representing a pressed key event, with the given modifiers.
static AWTKeyStroke AWTKeyStroke.getAWTKeyStrokeForEvent(java.awt.event.KeyEvent event)
          Returns a keystroke representing what caused the key event.
static AWTKeyStroke AWTKeyStroke.getAWTKeyStroke(java.lang.String s)
          Parses a string and returns the keystroke that it represents.
private static AWTKeyStroke AWTKeyStroke.getAWTKeyStroke(char keyChar, int keyCode, int modifiers, boolean release)
          Gets the appropriate keystroke, creating one if necessary.