Package org.zkoss.stateless.action.data
Class KeyData
- java.lang.Object
-
- org.zkoss.stateless.action.data.KeyData
-
- All Implemented Interfaces:
java.io.Serializable,ActionData
public class KeyData extends java.lang.Object implements ActionData
Represents a key pressed by the user.- Author:
- jumperchen
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static intDELETEstatic intDOWNstatic intENDstatic intF1static intF10static intF11static intF12static intF2static intF3static intF4static intF5static intF6static intF7static intF8static intF9static intHOMEstatic intINSERTstatic intLEFTstatic intPAGE_DOWNstatic intPAGE_UPstatic intRIGHTstatic intUP
-
Constructor Summary
Constructors Constructor Description KeyData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetKeyCode()Returns the key code.booleanisAltKey()Returns whether ALT is pressed.booleanisCtrlKey()Returns whether CTRL is pressed.booleanisMetaKey()Returns whether META is pressed.booleanisShiftKey()Returns whether SHIFT is pressed.
-
-
-
Field Detail
-
F1
public static final int F1
- See Also:
- Constant Field Values
-
F2
public static final int F2
- See Also:
- Constant Field Values
-
F3
public static final int F3
- See Also:
- Constant Field Values
-
F4
public static final int F4
- See Also:
- Constant Field Values
-
F5
public static final int F5
- See Also:
- Constant Field Values
-
F6
public static final int F6
- See Also:
- Constant Field Values
-
F7
public static final int F7
- See Also:
- Constant Field Values
-
F8
public static final int F8
- See Also:
- Constant Field Values
-
F9
public static final int F9
- See Also:
- Constant Field Values
-
F10
public static final int F10
- See Also:
- Constant Field Values
-
F11
public static final int F11
- See Also:
- Constant Field Values
-
F12
public static final int F12
- See Also:
- Constant Field Values
-
PAGE_UP
public static final int PAGE_UP
- See Also:
- Constant Field Values
-
PAGE_DOWN
public static final int PAGE_DOWN
- See Also:
- Constant Field Values
-
END
public static final int END
- See Also:
- Constant Field Values
-
HOME
public static final int HOME
- See Also:
- Constant Field Values
-
LEFT
public static final int LEFT
- See Also:
- Constant Field Values
-
UP
public static final int UP
- See Also:
- Constant Field Values
-
RIGHT
public static final int RIGHT
- See Also:
- Constant Field Values
-
DOWN
public static final int DOWN
- See Also:
- Constant Field Values
-
INSERT
public static final int INSERT
- See Also:
- Constant Field Values
-
DELETE
public static final int DELETE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getKeyCode
public final int getKeyCode()
Returns the key code.
-
isCtrlKey
public final boolean isCtrlKey()
Returns whether CTRL is pressed.
-
isShiftKey
public final boolean isShiftKey()
Returns whether SHIFT is pressed.
-
isAltKey
public final boolean isAltKey()
Returns whether ALT is pressed.
-
isMetaKey
public final boolean isMetaKey()
Returns whether META is pressed.
-
-