Java Doc for InputEvent.java in  » 6.0-JDK-Core » AWT » java » awt » event » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » AWT » java.awt.event 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.awt.event.ComponentEvent
   java.awt.event.InputEvent

All known Subclasses:   java.awt.event.MouseEvent,  java.awt.event.KeyEvent,
InputEvent
abstract public class InputEvent extends ComponentEvent (Code)
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.
author:
   Carl Quinn
version:
   1.46 06/05/07
See Also:   KeyEvent
See Also:   KeyAdapter
See Also:   MouseEvent
See Also:   MouseAdapter
See Also:   MouseMotionAdapter
since:
   1.1


Field Summary
final public static  intALT_DOWN_MASK
     The Alt key extended modifier constant.
final public static  intALT_GRAPH_DOWN_MASK
     The AltGraph key extended modifier constant.
final public static  intALT_GRAPH_MASK
     The AltGraph key modifier constant.
final public static  intALT_MASK
     The Alt key modifier constant.
final public static  intBUTTON1_DOWN_MASK
     The Mouse Button1 extended modifier constant.
final public static  intBUTTON1_MASK
     The Mouse Button1 modifier constant.
final public static  intBUTTON2_DOWN_MASK
     The Mouse Button2 extended modifier constant.
final public static  intBUTTON2_MASK
     The Mouse Button2 modifier constant.
final public static  intBUTTON3_DOWN_MASK
     The Mouse Button3 extended modifier constant.
final public static  intBUTTON3_MASK
     The Mouse Button3 modifier constant.
final public static  intCTRL_DOWN_MASK
     The Control key extended modifier constant.
final public static  intCTRL_MASK
     The Control key modifier constant.
final static  intFIRST_HIGH_BIT
    
final static  intHIGH_MODIFIERS
    
final static  intJDK_1_3_MODIFIERS
    
final public static  intMETA_DOWN_MASK
     The Meta key extended modifier constant.
final public static  intMETA_MASK
     The Meta key modifier constant.
final public static  intSHIFT_DOWN_MASK
     The Shift key extended modifier constant.
final public static  intSHIFT_MASK
     The Shift key modifier constant.
 intmodifiers
     The state of the modifier mask at the time the input event was fired.
final static  longserialVersionUID
    
 longwhen
     The input event's Time stamp in UTC format.

Constructor Summary
 InputEvent(Component source, int id, long when, int modifiers)
     Constructs an InputEvent object with the specified source component, modifiers, and type.

Note that passing in an invalid id results in unspecified behavior.


Method Summary
public  voidconsume()
     Consumes this event so that it will not be processed in the default manner by the source which originated it.
public  intgetModifiers()
     Returns the modifier mask for this event.
public  intgetModifiersEx()
     Returns the extended modifier mask for this event.
public static  StringgetModifiersExText(int modifiers)
     Returns a String describing the extended modifier keys and mouse buttons, such as "Shift", "Button1", or "Ctrl+Shift".
public  longgetWhen()
     Returns the timestamp of when this event occurred.
public  booleanisAltDown()
     Returns whether or not the Alt modifier is down on this event.
public  booleanisAltGraphDown()
     Returns whether or not the AltGraph modifier is down on this event.
public  booleanisConsumed()
     Returns whether or not this event has been consumed.
public  booleanisControlDown()
     Returns whether or not the Control modifier is down on this event.
public  booleanisMetaDown()
     Returns whether or not the Meta modifier is down on this event.
public  booleanisShiftDown()
     Returns whether or not the Shift modifier is down on this event.

Field Detail
ALT_DOWN_MASK
final public static int ALT_DOWN_MASK(Code)
The Alt key extended modifier constant.
since:
   1.4



ALT_GRAPH_DOWN_MASK
final public static int ALT_GRAPH_DOWN_MASK(Code)
The AltGraph key extended modifier constant.
since:
   1.4



ALT_GRAPH_MASK
final public static int ALT_GRAPH_MASK(Code)
The AltGraph key modifier constant.



ALT_MASK
final public static int ALT_MASK(Code)
The Alt key modifier constant. It is recommended that ALT_DOWN_MASK be used instead.



BUTTON1_DOWN_MASK
final public static int BUTTON1_DOWN_MASK(Code)
The Mouse Button1 extended modifier constant.
since:
   1.4



BUTTON1_MASK
final public static int BUTTON1_MASK(Code)
The Mouse Button1 modifier constant. It is recommended that BUTTON1_DOWN_MASK be used instead.



BUTTON2_DOWN_MASK
final public static int BUTTON2_DOWN_MASK(Code)
The Mouse Button2 extended modifier constant.
since:
   1.4



BUTTON2_MASK
final public static int BUTTON2_MASK(Code)
The Mouse Button2 modifier constant. It is recommended that BUTTON2_DOWN_MASK be used instead. Note that BUTTON2_MASK has the same value as ALT_MASK.



BUTTON3_DOWN_MASK
final public static int BUTTON3_DOWN_MASK(Code)
The Mouse Button3 extended modifier constant.
since:
   1.4



BUTTON3_MASK
final public static int BUTTON3_MASK(Code)
The Mouse Button3 modifier constant. It is recommended that BUTTON3_DOWN_MASK be used instead. Note that BUTTON3_MASK has the same value as META_MASK.



CTRL_DOWN_MASK
final public static int CTRL_DOWN_MASK(Code)
The Control key extended modifier constant.
since:
   1.4



CTRL_MASK
final public static int CTRL_MASK(Code)
The Control key modifier constant. It is recommended that CTRL_DOWN_MASK be used instead.



FIRST_HIGH_BIT
final static int FIRST_HIGH_BIT(Code)



HIGH_MODIFIERS
final static int HIGH_MODIFIERS(Code)



JDK_1_3_MODIFIERS
final static int JDK_1_3_MODIFIERS(Code)



META_DOWN_MASK
final public static int META_DOWN_MASK(Code)
The Meta key extended modifier constant.
since:
   1.4



META_MASK
final public static int META_MASK(Code)
The Meta key modifier constant. It is recommended that META_DOWN_MASK be used instead.



SHIFT_DOWN_MASK
final public static int SHIFT_DOWN_MASK(Code)
The Shift key extended modifier constant.
since:
   1.4



SHIFT_MASK
final public static int SHIFT_MASK(Code)
The Shift key modifier constant. It is recommended that SHIFT_DOWN_MASK be used instead.



modifiers
int modifiers(Code)
The state of the modifier mask at the time the input event was fired.
See Also:   InputEvent.getModifiers()
See Also:   InputEvent.getModifiersEx()
See Also:   java.awt.event.KeyEvent
See Also:   java.awt.event.MouseEvent



serialVersionUID
final static long serialVersionUID(Code)



when
long when(Code)
The input event's Time stamp in UTC format. The time stamp indicates when the input event was created.
See Also:   InputEvent.getWhen()




Constructor Detail
InputEvent
InputEvent(Component source, int id, long when, int modifiers)(Code)
Constructs an InputEvent object with the specified source component, modifiers, and type.

Note that passing in an invalid id results in unspecified behavior. This method throws an IllegalArgumentException if source is null.
Parameters:
  source - the object where the event originated
Parameters:
  id - the event type
Parameters:
  when - the time the event occurred
Parameters:
  modifiers - represents the modifier keys and mouse buttons down while the event occurred
throws:
  IllegalArgumentException - if source is null





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



getModifiers
public int getModifiers()(Code)
Returns the modifier mask for this event.



getModifiersEx
public int getModifiersEx()(Code)
Returns the extended modifier mask for this event. Extended modifiers represent the state of all modal keys, such as ALT, CTRL, META, and the mouse buttons just after the event occurred

For example, if the user presses button 1 followed by button 2, and then releases them in the same order, the following sequence of events is generated:

 MOUSE_PRESSED:  BUTTON1_DOWN_MASK
 MOUSE_PRESSED:  BUTTON1_DOWN_MASK | BUTTON2_DOWN_MASK
 MOUSE_RELEASED: BUTTON2_DOWN_MASK
 MOUSE_CLICKED:  BUTTON2_DOWN_MASK
 MOUSE_RELEASED: 
 MOUSE_CLICKED:  
 

It is not recommended to compare the return value of this method using == because new modifiers can be added in the future. For example, the appropriate way to check that SHIFT and BUTTON1 are down, but CTRL is up is demonstrated by the following code:

 int onmask = SHIFT_DOWN_MASK | BUTTON1_DOWN_MASK;
 int offmask = CTRL_DOWN_MASK;
 if ((event.getModifiersEx() & (onmask | offmask)) == onmask) {
 ...
 }
 
The above code will work even if new modifiers are added.
since:
   1.4



getModifiersExText
public static String getModifiersExText(int modifiers)(Code)
Returns a String describing the extended modifier keys and mouse buttons, such as "Shift", "Button1", or "Ctrl+Shift". These strings can be localized by changing the awt.properties file.
Parameters:
  modifiers - a modifier mask describing the extendedmodifier keys and mouse buttons for the event a text description of the combination of extended modifier keys and mouse buttons that were held down during the event.
since:
   1.4



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



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



isAltGraphDown
public boolean isAltGraphDown()(Code)
Returns whether or not the AltGraph modifier is down on this event.



isConsumed
public boolean isConsumed()(Code)
Returns whether or not this event has been consumed.
See Also:   InputEvent.consume



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



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



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



Fields inherited from java.awt.event.ComponentEvent
final public static int COMPONENT_FIRST(Code)(Java Doc)
final public static int COMPONENT_HIDDEN(Code)(Java Doc)
final public static int COMPONENT_LAST(Code)(Java Doc)
final public static int COMPONENT_MOVED(Code)(Java Doc)
final public static int COMPONENT_RESIZED(Code)(Java Doc)
final public static int COMPONENT_SHOWN(Code)(Java Doc)

Methods inherited from java.awt.event.ComponentEvent
public Component getComponent()(Code)(Java Doc)
public String paramString()(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.