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. Input events are delivered to listeners before they are processed normally by the source where they originated. This allows listeners and component subclasses to "consume" the event so that the source will not process them in their default manner. For example, consuming mousePressed events on a Button component will prevent the Button from being activated.


Variable Index

 o ALT_MASK
The alt key modifier constant.
 o BUTTON1_MASK
The mouse button1 modifier constant.
 o BUTTON2_MASK
The mouse button2 modifier constant.
 o BUTTON3_MASK
The mouse button3 modifier constant.
 o CTRL_MASK
The control key modifier constant.
 o META_MASK
The meta key modifier constant.
 o SHIFT_MASK
The shift key modifier constant.

Method Index

 o consume()
Consumes this event so that it will not be processed in the default manner by the source which originated it.
 o getModifiers()
Returns the modifiers flag for this event.
 o getWhen()
Returns the timestamp of when this event occurred.
 o isAltDown()
Returns whether or not the Alt modifier is down on this event.
 o isConsumed()
Returns whether or not this event has been consumed.
 o isControlDown()
Returns whether or not the Control modifier is down on this event.
 o isMetaDown()
Returns whether or not the Meta modifier is down on this event.
 o isShiftDown()
Returns whether or not the Shift modifier is down on this event.

Variables

 o SHIFT_MASK
  public final static int SHIFT_MASK
The shift key modifier constant.

 o CTRL_MASK
  public final static int CTRL_MASK
The control key modifier constant.

 o META_MASK
  public final static int META_MASK
The meta key modifier constant.

 o ALT_MASK
  public final static int ALT_MASK
The alt key modifier constant.

 o BUTTON1_MASK
  public final static int BUTTON1_MASK
The mouse button1 modifier constant.

 o BUTTON2_MASK
  public final static int BUTTON2_MASK
The mouse button2 modifier constant.

 o BUTTON3_MASK
  public final static int BUTTON3_MASK
The mouse button3 modifier constant.

Methods

 o isShiftDown
  public boolean isShiftDown()
Returns whether or not the Shift modifier is down on this event.

 o isControlDown
  public boolean isControlDown()
Returns whether or not the Control modifier is down on this event.

 o isMetaDown
  public boolean isMetaDown()
Returns whether or not the Meta modifier is down on this event.

 o isAltDown
  public boolean isAltDown()
Returns whether or not the Alt modifier is down on this event.

 o getWhen
  public long getWhen()
Returns the timestamp of when this event occurred.

 o getModifiers
  public int getModifiers()
Returns the modifiers flag for this event.

 o consume
  public void consume()
Consumes this event so that it will not be processed in the default manner by the source which originated it.

Overrides:
consume in class AWTEvent
 o isConsumed
  public boolean isConsumed()
Returns whether or not this event has been consumed.

Overrides:
isConsumed in class AWTEvent
See Also:
consume

All Packages  Class Hierarchy  This Package  Previous  Next  Index