All Packages Class Hierarchy This Package Previous Next Index
Class java.awt.event.InputEvent
java.lang.Object
|
+----java.util.EventObject
|
+----java.awt.AWTEvent
|
+----java.awt.event.ComponentEvent
|
+----java.awt.event.InputEvent
- public class InputEvent
- extends ComponentEvent
The root event class for all component-level input events.
-
ALT_MASK
-
The alt key modifier constant.
-
BUTTON1_MASK
- The mouse button1 modifier constant.
-
BUTTON2_MASK
- The mouse button2 modifier constant.
-
BUTTON3_MASK
-
The mouse button3 modifier constant.
-
CTRL_MASK
- The control key modifier constant.
-
META_MASK
-
The meta key modifier constant.
-
SHIFT_MASK
- The shift key modifier constant.
-
getModifiers()
- Returns the modifiers flag for this event.
-
getWhen()
- Returns the timestamp of when this event occurred.
-
isControlDown()
- Returns whether or not the Control modifier is down on this event.
-
isMetaDown()
- Returns whether or not the Meta modifier is down on this event.
-
isShiftDown()
- Returns whether or not the Shift modifier is down on this event.
SHIFT_MASK
public final static int SHIFT_MASK
- The shift key modifier constant.
CTRL_MASK
public final static int CTRL_MASK
- The control key modifier constant.
META_MASK
public final static int META_MASK
- The meta key modifier constant.
ALT_MASK
public final static int ALT_MASK
- The alt key modifier constant.
BUTTON1_MASK
public final static int BUTTON1_MASK
- The mouse button1 modifier constant.
BUTTON2_MASK
public final static int BUTTON2_MASK
- The mouse button2 modifier constant.
BUTTON3_MASK
public final static int BUTTON3_MASK
- The mouse button3 modifier constant.
isShiftDown
public boolean isShiftDown()
- Returns whether or not the Shift modifier is down on this event.
isControlDown
public boolean isControlDown()
- Returns whether or not the Control modifier is down on this event.
isMetaDown
public boolean isMetaDown()
- Returns whether or not the Meta modifier is down on this event.
getWhen
public long getWhen()
- Returns the timestamp of when this event occurred.
getModifiers
public int getModifiers()
- Returns the modifiers flag for this event.
All Packages Class Hierarchy This Package Previous Next Index