class MouseEventHandler
extends java.lang.Object
implements java.awt.event.MouseListener
Modifier and Type | Field and Description |
---|---|
private ChannelOutput |
event
The channel down which action event notifications are sent.
|
Constructor and Description |
---|
MouseEventHandler(ChannelOutput event)
constructs a new MouseEventHandler with the specified output channel
|
Modifier and Type | Method and Description |
---|---|
void |
mouseClicked(java.awt.event.MouseEvent e)
Assumes the event channel is being serviced (eg by an overwriting channel).
|
void |
mouseEntered(java.awt.event.MouseEvent e)
Assumes the event channel is being serviced (eg by an overwriting channel).
|
void |
mouseExited(java.awt.event.MouseEvent e)
Assumes the event channel is being serviced (eg by an overwriting channel).
|
void |
mousePressed(java.awt.event.MouseEvent e)
Assumes the event channel is being serviced (eg by an overwriting channel).
|
void |
mouseReleased(java.awt.event.MouseEvent e)
Assumes the event channel is being serviced (eg by an overwriting channel).
|
private ChannelOutput event
public MouseEventHandler(ChannelOutput event)
event
- the Channel to which to send the event notificationpublic void mouseClicked(java.awt.event.MouseEvent e)
mouseClicked
in interface java.awt.event.MouseListener
e
- The parameters associated with this eventpublic void mousePressed(java.awt.event.MouseEvent e)
mousePressed
in interface java.awt.event.MouseListener
e
- The parameters associated with this eventpublic void mouseReleased(java.awt.event.MouseEvent e)
mouseReleased
in interface java.awt.event.MouseListener
e
- The parameters associated with this eventpublic void mouseEntered(java.awt.event.MouseEvent e)
mouseEntered
in interface java.awt.event.MouseListener
e
- The parameters associated with this eventpublic void mouseExited(java.awt.event.MouseEvent e)
mouseExited
in interface java.awt.event.MouseListener
e
- The parameters associated with this event