|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
This interface is here to allow component wrapped in DraggableComponents
to receive their own mouse events without blocking such events from
the DraggableComponent. Just adding a regular java.awt.event.MouseListener
to the component to be wrapped would block such mouse events from the
DraggableComponent making operation of the DragggableContainer very
frustrating.
This class directly mirrors the java.awt.event.MouseListener interface and
will be used in exactly the same way.
| Method Summary | |
void |
mouseClicked(MouseEvent me)
This method will be called whenever a mouse button is clicked on top of the generating component. |
void |
mouseEntered(MouseEvent me)
This method will be called whenever the mouse cursor enters the generating component. |
void |
mouseExited(MouseEvent me)
This method will be called whenever the mouse cursor exits the generating component. |
void |
mousePressed(MouseEvent me)
This method will be called whenever a mouse button is pressed on top of the generating component. |
void |
mouseReleased(MouseEvent me)
This method will be called whenever a mouse button is released on top of the generating component. |
| Method Detail |
public void mousePressed(MouseEvent me)
me - The generated event.public void mouseClicked(MouseEvent me)
me - The generated event.public void mouseReleased(MouseEvent me)
me - The generated event.public void mouseEntered(MouseEvent me)
me - The generated event.public void mouseExited(MouseEvent me)
me - The generated event.
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||