|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Unsafe: Classes which implement this interface provide methods that deal with the events that are generated as mouse buttons are pressed.
After creating an instance of a class that implements
this interface it can be added to a control using the
addMouseListener
method and removed using
the removeMouseListener
method. When a
mouse button is pressed or released, the appropriate method
will be invoked.
MouseAdapter
,
MouseEvent
Method Summary | |
void |
mouseDoubleClick(MouseEvent e)
Suppressed: Sent when a mouse button is pressed twice within the (operating system specified) double click period. |
void |
mouseDown(MouseEvent e)
Suppressed: Sent when a mouse button is pressed. |
void |
mouseUp(MouseEvent e)
Suppressed: Sent when a mouse button is released. |
Method Detail |
public void mouseDoubleClick(MouseEvent e)
e
- an event containing information about the mouse double clickorg.eclipse.swt.widgets.Display#getDoubleClickTime
public void mouseDown(MouseEvent e)
e
- an event containing information about the mouse button presspublic void mouseUp(MouseEvent e)
e
- an event containing information about the mouse button release
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |