- All Implemented Interfaces:
- Serializable
@Deprecated(since="9") public class Event extends Object implements Serializable
AWTEvent and its subclasses be
             used insteadEvent class is obsolete and is
 available only for backwards compatibility.  It has been replaced
 by the AWTEvent class and its subclasses.
 
 Event is a platform-independent class that
 encapsulates events from the platform's Graphical User
 Interface in the Java 1.0 event model. In Java 1.1
 and later versions, the Event class is maintained
 only for backwards compatibility. The information in this
 class description is provided to assist programmers in
 converting Java 1.0 programs to the new event model.
 
 In the Java 1.0 event model, an event contains an
 id field
 that indicates what type of event it is and which other
 Event variables are relevant for the event.
 
 For keyboard events, key
 contains a value indicating which key was activated, and
 modifiers contains the
 modifiers for that event.  For the KEY_PRESS and KEY_RELEASE
 event ids, the value of key is the unicode
 character code for the key. For KEY_ACTION and
 KEY_ACTION_RELEASE, the value of key is
 one of the defined action-key identifiers in the
 Event class (PGUP,
 PGDN, F1, F2, etc).
- Since:
- 1.0
- See Also:
- Serialized Form
- 
Field SummaryFields Modifier and Type Field Description static intACTION_EVENTDeprecated.This event indicates that the user wants some action to occur.static intALT_MASKDeprecated.This flag indicates that the Alt key was down when the event occurred.ObjectargDeprecated.An arbitrary argument of the event.static intBACK_SPACEDeprecated.The BackSpace key.static intCAPS_LOCKDeprecated.The Caps Lock key, a non-ASCII action key.intclickCountDeprecated.ForMOUSE_DOWNevents, this field indicates the number of consecutive clicks.static intCTRL_MASKDeprecated.This flag indicates that the Control key was down when the event occurred.static intDELETEDeprecated.The Delete key.static intDOWNDeprecated.The Down Arrow key, a non-ASCII action key.static intENDDeprecated.The End key, a non-ASCII action key.static intENTERDeprecated.The Enter key.static intESCAPEDeprecated.The Escape key.EventevtDeprecated.The next event.static intF1Deprecated.The F1 function key, a non-ASCII action key.static intF10Deprecated.The F10 function key, a non-ASCII action key.static intF11Deprecated.The F11 function key, a non-ASCII action key.static intF12Deprecated.The F12 function key, a non-ASCII action key.static intF2Deprecated.The F2 function key, a non-ASCII action key.static intF3Deprecated.The F3 function key, a non-ASCII action key.static intF4Deprecated.The F4 function key, a non-ASCII action key.static intF5Deprecated.The F5 function key, a non-ASCII action key.static intF6Deprecated.The F6 function key, a non-ASCII action key.static intF7Deprecated.The F7 function key, a non-ASCII action key.static intF8Deprecated.The F8 function key, a non-ASCII action key.static intF9Deprecated.The F9 function key, a non-ASCII action key.static intGOT_FOCUSDeprecated.A component gained the focus.static intHOMEDeprecated.The Home key, a non-ASCII action key.intidDeprecated.Indicates which type of event the event is, and which otherEventvariables are relevant for the event.static intINSERTDeprecated.The Insert key, a non-ASCII action key.intkeyDeprecated.The key code of the key that was pressed in a keyboard event.static intKEY_ACTIONDeprecated.The user has pressed a non-ASCII action key.static intKEY_ACTION_RELEASEDeprecated.The user has released a non-ASCII action key.static intKEY_PRESSDeprecated.The user has pressed a normal key.static intKEY_RELEASEDeprecated.The user has released a normal key.static intLEFTDeprecated.The Left Arrow key, a non-ASCII action key.static intLIST_DESELECTDeprecated.An item in a list has been deselected.static intLIST_SELECTDeprecated.An item in a list has been selected.static intLOAD_FILEDeprecated.A file loading event.static intLOST_FOCUSDeprecated.A component lost the focus.static intMETA_MASKDeprecated.This flag indicates that the Meta key was down when the event occurred.intmodifiersDeprecated.The state of the modifier keys.static intMOUSE_DOWNDeprecated.The user has pressed the mouse button.static intMOUSE_DRAGDeprecated.The user has moved the mouse with a button pressed.static intMOUSE_ENTERDeprecated.The mouse has entered a component.static intMOUSE_EXITDeprecated.The mouse has exited a component.static intMOUSE_MOVEDeprecated.The mouse has moved with no button pressed.static intMOUSE_UPDeprecated.The user has released the mouse button.static intNUM_LOCKDeprecated.The Num Lock key, a non-ASCII action key.static intPAUSEDeprecated.The Pause key, a non-ASCII action key.static intPGDNDeprecated.The Page Down key, a non-ASCII action key.static intPGUPDeprecated.The Page Up key, a non-ASCII action key.static intPRINT_SCREENDeprecated.The Print Screen key, a non-ASCII action key.static intRIGHTDeprecated.The Right Arrow key, a non-ASCII action key.static intSAVE_FILEDeprecated.A file saving event.static intSCROLL_ABSOLUTEDeprecated.The user has moved the bubble (thumb) in a scroll bar, moving to an "absolute" position, rather than to an offset from the last position.static intSCROLL_BEGINDeprecated.The scroll begin event.static intSCROLL_ENDDeprecated.The scroll end event.static intSCROLL_LINE_DOWNDeprecated.The user has activated the line down area of a scroll bar.static intSCROLL_LINE_UPDeprecated.The user has activated the line up area of a scroll bar.static intSCROLL_LOCKDeprecated.The Scroll Lock key, a non-ASCII action key.static intSCROLL_PAGE_DOWNDeprecated.The user has activated the page down area of a scroll bar.static intSCROLL_PAGE_UPDeprecated.The user has activated the page up area of a scroll bar.static intSHIFT_MASKDeprecated.This flag indicates that the Shift key was down when the event occurred.static intTABDeprecated.The Tab key.ObjecttargetDeprecated.The target component.static intUPDeprecated.The Up Arrow key, a non-ASCII action key.longwhenDeprecated.The time stamp.static intWINDOW_DEICONIFYDeprecated.The user has asked the window manager to de-iconify the window.static intWINDOW_DESTROYDeprecated.The user has asked the window manager to kill the window.static intWINDOW_EXPOSEDeprecated.The user has asked the window manager to expose the window.static intWINDOW_ICONIFYDeprecated.The user has asked the window manager to iconify the window.static intWINDOW_MOVEDDeprecated.The user has asked the window manager to move the window.intxDeprecated.The x coordinate of the event.intyDeprecated.The y coordinate of the event.
- 
Constructor SummaryConstructors Constructor Description Event(Object target, int id, Object arg)Deprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility.Event(Object target, long when, int id, int x, int y, int key, int modifiers)Deprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility.Event(Object target, long when, int id, int x, int y, int key, int modifiers, Object arg)Deprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility.
- 
Method SummaryModifier and Type Method Description booleancontrolDown()Deprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility.booleanmetaDown()Deprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility.protected StringparamString()Deprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility.booleanshiftDown()Deprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility.StringtoString()Deprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility.voidtranslate(int dx, int dy)Deprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility.
- 
Field Details- 
SHIFT_MASKpublic static final int SHIFT_MASKDeprecated.This flag indicates that the Shift key was down when the event occurred.- See Also:
- Constant Field Values
 
- 
CTRL_MASKpublic static final int CTRL_MASKDeprecated.This flag indicates that the Control key was down when the event occurred.- See Also:
- Constant Field Values
 
- 
META_MASKpublic static final int META_MASKDeprecated.This flag indicates that the Meta key was down when the event occurred. For mouse events, this flag indicates that the right button was pressed or released.- See Also:
- Constant Field Values
 
- 
ALT_MASKpublic static final int ALT_MASKDeprecated.This flag indicates that the Alt key was down when the event occurred. For mouse events, this flag indicates that the middle mouse button was pressed or released.- See Also:
- Constant Field Values
 
- 
HOMEpublic static final int HOMEDeprecated.The Home key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
ENDpublic static final int ENDDeprecated.The End key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
PGUPpublic static final int PGUPDeprecated.The Page Up key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
PGDNpublic static final int PGDNDeprecated.The Page Down key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
UPpublic static final int UPDeprecated.The Up Arrow key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
DOWNpublic static final int DOWNDeprecated.The Down Arrow key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
LEFTpublic static final int LEFTDeprecated.The Left Arrow key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
RIGHTpublic static final int RIGHTDeprecated.The Right Arrow key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
F1public static final int F1Deprecated.The F1 function key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
F2public static final int F2Deprecated.The F2 function key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
F3public static final int F3Deprecated.The F3 function key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
F4public static final int F4Deprecated.The F4 function key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
F5public static final int F5Deprecated.The F5 function key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
F6public static final int F6Deprecated.The F6 function key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
F7public static final int F7Deprecated.The F7 function key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
F8public static final int F8Deprecated.The F8 function key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
F9public static final int F9Deprecated.The F9 function key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
F10public static final int F10Deprecated.The F10 function key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
F11public static final int F11Deprecated.The F11 function key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
F12public static final int F12Deprecated.The F12 function key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
PRINT_SCREENpublic static final int PRINT_SCREENDeprecated.The Print Screen key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
SCROLL_LOCKpublic static final int SCROLL_LOCKDeprecated.The Scroll Lock key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
CAPS_LOCKpublic static final int CAPS_LOCKDeprecated.The Caps Lock key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
NUM_LOCKpublic static final int NUM_LOCKDeprecated.The Num Lock key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
PAUSEpublic static final int PAUSEDeprecated.The Pause key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
INSERTpublic static final int INSERTDeprecated.The Insert key, a non-ASCII action key.- See Also:
- Constant Field Values
 
- 
ENTERpublic static final int ENTERDeprecated.The Enter key.- See Also:
- Constant Field Values
 
- 
BACK_SPACEpublic static final int BACK_SPACEDeprecated.The BackSpace key.- See Also:
- Constant Field Values
 
- 
TABpublic static final int TABDeprecated.The Tab key.- See Also:
- Constant Field Values
 
- 
ESCAPEpublic static final int ESCAPEDeprecated.The Escape key.- See Also:
- Constant Field Values
 
- 
DELETEpublic static final int DELETEDeprecated.The Delete key.- See Also:
- Constant Field Values
 
- 
WINDOW_DESTROYpublic static final int WINDOW_DESTROYDeprecated.The user has asked the window manager to kill the window.- See Also:
- Constant Field Values
 
- 
WINDOW_EXPOSEpublic static final int WINDOW_EXPOSEDeprecated.The user has asked the window manager to expose the window.- See Also:
- Constant Field Values
 
- 
WINDOW_ICONIFYpublic static final int WINDOW_ICONIFYDeprecated.The user has asked the window manager to iconify the window.- See Also:
- Constant Field Values
 
- 
WINDOW_DEICONIFYpublic static final int WINDOW_DEICONIFYDeprecated.The user has asked the window manager to de-iconify the window.- See Also:
- Constant Field Values
 
- 
WINDOW_MOVEDpublic static final int WINDOW_MOVEDDeprecated.The user has asked the window manager to move the window.- See Also:
- Constant Field Values
 
- 
KEY_PRESSpublic static final int KEY_PRESSDeprecated.The user has pressed a normal key.- See Also:
- Constant Field Values
 
- 
KEY_RELEASEpublic static final int KEY_RELEASEDeprecated.The user has released a normal key.- See Also:
- Constant Field Values
 
- 
KEY_ACTIONpublic static final int KEY_ACTIONDeprecated.The user has pressed a non-ASCII action key. Thekeyfield contains a value that indicates that the event occurred on one of the action keys, which comprise the 12 function keys, the arrow (cursor) keys, Page Up, Page Down, Home, End, Print Screen, Scroll Lock, Caps Lock, Num Lock, Pause, and Insert.- See Also:
- Constant Field Values
 
- 
KEY_ACTION_RELEASEpublic static final int KEY_ACTION_RELEASEDeprecated.The user has released a non-ASCII action key. Thekeyfield contains a value that indicates that the event occurred on one of the action keys, which comprise the 12 function keys, the arrow (cursor) keys, Page Up, Page Down, Home, End, Print Screen, Scroll Lock, Caps Lock, Num Lock, Pause, and Insert.- See Also:
- Constant Field Values
 
- 
MOUSE_DOWNpublic static final int MOUSE_DOWNDeprecated.The user has pressed the mouse button. TheALT_MASKflag indicates that the middle button has been pressed. TheMETA_MASKflag indicates that the right button has been pressed.- See Also:
- ALT_MASK,- META_MASK, Constant Field Values
 
- 
MOUSE_UPpublic static final int MOUSE_UPDeprecated.The user has released the mouse button. TheALT_MASKflag indicates that the middle button has been released. TheMETA_MASKflag indicates that the right button has been released.- See Also:
- ALT_MASK,- META_MASK, Constant Field Values
 
- 
MOUSE_MOVEpublic static final int MOUSE_MOVEDeprecated.The mouse has moved with no button pressed.- See Also:
- Constant Field Values
 
- 
MOUSE_ENTERpublic static final int MOUSE_ENTERDeprecated.The mouse has entered a component.- See Also:
- Constant Field Values
 
- 
MOUSE_EXITpublic static final int MOUSE_EXITDeprecated.The mouse has exited a component.- See Also:
- Constant Field Values
 
- 
MOUSE_DRAGpublic static final int MOUSE_DRAGDeprecated.The user has moved the mouse with a button pressed. TheALT_MASKflag indicates that the middle button is being pressed. TheMETA_MASKflag indicates that the right button is being pressed.- See Also:
- ALT_MASK,- META_MASK, Constant Field Values
 
- 
SCROLL_LINE_UPpublic static final int SCROLL_LINE_UPDeprecated.The user has activated the line up area of a scroll bar.- See Also:
- Constant Field Values
 
- 
SCROLL_LINE_DOWNpublic static final int SCROLL_LINE_DOWNDeprecated.The user has activated the line down area of a scroll bar.- See Also:
- Constant Field Values
 
- 
SCROLL_PAGE_UPpublic static final int SCROLL_PAGE_UPDeprecated.The user has activated the page up area of a scroll bar.- See Also:
- Constant Field Values
 
- 
SCROLL_PAGE_DOWNpublic static final int SCROLL_PAGE_DOWNDeprecated.The user has activated the page down area of a scroll bar.- See Also:
- Constant Field Values
 
- 
SCROLL_ABSOLUTEpublic static final int SCROLL_ABSOLUTEDeprecated.The user has moved the bubble (thumb) in a scroll bar, moving to an "absolute" position, rather than to an offset from the last position.- See Also:
- Constant Field Values
 
- 
SCROLL_BEGINpublic static final int SCROLL_BEGINDeprecated.The scroll begin event.- See Also:
- Constant Field Values
 
- 
SCROLL_ENDpublic static final int SCROLL_ENDDeprecated.The scroll end event.- See Also:
- Constant Field Values
 
- 
LIST_SELECTpublic static final int LIST_SELECTDeprecated.An item in a list has been selected.- See Also:
- Constant Field Values
 
- 
LIST_DESELECTpublic static final int LIST_DESELECTDeprecated.An item in a list has been deselected.- See Also:
- Constant Field Values
 
- 
ACTION_EVENTpublic static final int ACTION_EVENTDeprecated.This event indicates that the user wants some action to occur.- See Also:
- Constant Field Values
 
- 
LOAD_FILEpublic static final int LOAD_FILEDeprecated.A file loading event.- See Also:
- Constant Field Values
 
- 
SAVE_FILEpublic static final int SAVE_FILEDeprecated.A file saving event.- See Also:
- Constant Field Values
 
- 
GOT_FOCUSpublic static final int GOT_FOCUSDeprecated.A component gained the focus.- See Also:
- Constant Field Values
 
- 
LOST_FOCUSpublic static final int LOST_FOCUSDeprecated.A component lost the focus.- See Also:
- Constant Field Values
 
- 
targetDeprecated.The target component. This indicates the component over which the event occurred or with which the event is associated. This object has been replaced by AWTEvent.getSource()- See Also:
- EventObject.getSource()
 
- 
whenpublic long whenDeprecated.The time stamp. Replaced by InputEvent.getWhen().- See Also:
- InputEvent.getWhen()
 
- 
idpublic int idDeprecated.Indicates which type of event the event is, and which otherEventvariables are relevant for the event. This has been replaced by AWTEvent.getID()- See Also:
- AWTEvent.getID()
 
- 
xpublic int xDeprecated.The x coordinate of the event. Replaced by MouseEvent.getX()- See Also:
- MouseEvent.getX()
 
- 
ypublic int yDeprecated.The y coordinate of the event. Replaced by MouseEvent.getY()- See Also:
- MouseEvent.getY()
 
- 
keypublic int keyDeprecated.The key code of the key that was pressed in a keyboard event. This has been replaced by KeyEvent.getKeyCode()- See Also:
- KeyEvent.getKeyCode()
 
- 
modifierspublic int modifiersDeprecated.The state of the modifier keys. This is replaced with InputEvent.getModifiers() In java 1.1 MouseEvent and KeyEvent are subclasses of InputEvent.- See Also:
- InputEvent.getModifiers()
 
- 
clickCountpublic int clickCountDeprecated.ForMOUSE_DOWNevents, this field indicates the number of consecutive clicks. For other events, its value is0. This field has been replaced by MouseEvent.getClickCount().- See Also:
- MouseEvent.getClickCount()
 
- 
argDeprecated.An arbitrary argument of the event. The value of this field depends on the type of event.arghas been replaced by event specific property.
- 
evtDeprecated.The next event. This field is set when putting events into a linked list. This has been replaced by EventQueue.- See Also:
- EventQueue
 
 
- 
- 
Constructor Details- 
EventDeprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility. It has been replaced by theAWTEventclass and its subclasses.Creates an instance of Eventwith the specified target component, time stamp, event type, x and y coordinates, keyboard key, state of the modifier keys, and argument.- Parameters:
- target- the target component.
- when- the time stamp.
- id- the event type.
- x- the x coordinate.
- y- the y coordinate.
- key- the key pressed in a keyboard event.
- modifiers- the state of the modifier keys.
- arg- the specified argument.
 
- 
EventDeprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility. It has been replaced by theAWTEventclass and its subclasses.Creates an instance of Event, with the specified target component, time stamp, event type, x and y coordinates, keyboard key, state of the modifier keys, and an argument set tonull.- Parameters:
- target- the target component.
- when- the time stamp.
- id- the event type.
- x- the x coordinate.
- y- the y coordinate.
- key- the key pressed in a keyboard event.
- modifiers- the state of the modifier keys.
 
- 
EventDeprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility. It has been replaced by theAWTEventclass and its subclasses.Creates an instance of Eventwith the specified target component, event type, and argument.- Parameters:
- target- the target component.
- id- the event type.
- arg- the specified argument.
 
 
- 
- 
Method Details- 
translatepublic void translate(int dx, int dy)Deprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility. It has been replaced by theAWTEventclass and its subclasses.Translates this event so that its x and y coordinates are increased by dx and dy, respectively. This method translates an event relative to the given component. This involves, at a minimum, translating the coordinates into the local coordinate system of the given component. It may also involve translating a region in the case of an expose event. - Parameters:
- dx- the distance to translate the x coordinate.
- dy- the distance to translate the y coordinate.
 
- 
shiftDownpublic boolean shiftDown()Deprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility. It has been replaced by theAWTEventclass and its subclasses.Checks if the Shift key is down. - Returns:
- trueif the key is down;- falseotherwise.
- See Also:
- modifiers,- controlDown(),- metaDown()
 
- 
controlDownpublic boolean controlDown()Deprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility. It has been replaced by theAWTEventclass and its subclasses.Checks if the Control key is down. - Returns:
- trueif the key is down;- falseotherwise.
- See Also:
- modifiers,- shiftDown(),- metaDown()
 
- 
metaDownpublic boolean metaDown()Deprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility. It has been replaced by theAWTEventclass and its subclasses.Checks if the Meta key is down. - Returns:
- trueif the key is down;- falseotherwise.
- See Also:
- modifiers,- shiftDown(),- controlDown()
 
- 
paramStringDeprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility. It has been replaced by theAWTEventclass and its subclasses.Returns a string representing the state of this Event. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations. The returned string may be empty but may not benull.- Returns:
- the parameter string of this event
 
- 
toStringDeprecated.NOTE: TheEventclass is obsolete and is available only for backwards compatibility. It has been replaced by theAWTEventclass and its subclasses.Returns a representation of this event's values as a string. - Overrides:
- toStringin class- Object
- Returns:
- a string that represents the event and the values of its member fields.
- Since:
- 1.1
- See Also:
- paramString()
 
 
-