edu.neu.ccs.gui
Class MouseActionEvent
java.lang.Object
java.util.EventObject
java.awt.AWTEvent
java.awt.event.ActionEvent
edu.neu.ccs.gui.MouseActionEvent
- All Implemented Interfaces:
- Serializable
- public class MouseActionEvent
- extends ActionEvent
Class of events representing an action
triggered by a mouse event.
- Since:
- 1.0.1
- Version:
- 2.2
- See Also:
- Serialized Form
|
Field Summary |
protected MouseEvent |
event
The mouse event that triggered this action event. |
| Fields inherited from class java.awt.AWTEvent |
ACTION_EVENT_MASK, ADJUSTMENT_EVENT_MASK, COMPONENT_EVENT_MASK, consumed, CONTAINER_EVENT_MASK, FOCUS_EVENT_MASK, HIERARCHY_BOUNDS_EVENT_MASK, HIERARCHY_EVENT_MASK, id, INPUT_METHOD_EVENT_MASK, INVOCATION_EVENT_MASK, ITEM_EVENT_MASK, KEY_EVENT_MASK, MOUSE_EVENT_MASK, MOUSE_MOTION_EVENT_MASK, MOUSE_WHEEL_EVENT_MASK, PAINT_EVENT_MASK, RESERVED_ID_MAX, TEXT_EVENT_MASK, WINDOW_EVENT_MASK, WINDOW_FOCUS_EVENT_MASK, WINDOW_STATE_EVENT_MASK |
|
Constructor Summary |
MouseActionEvent(MouseEvent evt,
Object source)
Constructs a mouse action event
triggered by the given mouse event
generated by the given source object. |
MouseActionEvent(MouseEvent evt,
Object source,
int id,
String command)
Constructs a mouse action event
triggered by the given mouse event
generated by the given source object
with the given identifier and command name. |
event
protected MouseEvent event
- The mouse event that triggered this action event.
MouseActionEvent
public MouseActionEvent(MouseEvent evt,
Object source)
- Constructs a mouse action event
triggered by the given mouse event
generated by the given source object.
- Parameters:
evt - the triggering mouse eventsource - the object that originated the event
MouseActionEvent
public MouseActionEvent(MouseEvent evt,
Object source,
int id,
String command)
- Constructs a mouse action event
triggered by the given mouse event
generated by the given source object
with the given identifier and command name.
- Parameters:
evt - the triggering mouse eventsource - the object that originated the eventid - an integer that identifies the eventcommand - a string that may specify a command
(possibly one of several)
associated with the event
getMouseEvent
public MouseEvent getMouseEvent()
- Returns the mouse event that triggered
this mouse action event.