| |
|
| java.lang.Object org.acm.seguin.uml.line.DragPanelAdapter
DragPanelAdapter | public class DragPanelAdapter implements MouseListener,MouseMotionListener(Code) | | This adapter handles dragging panels around on another panel. This is used
to relocate the class images on the class diagram.
author: Chris Seguin |
DragPanelAdapter | public DragPanelAdapter(EndPointPanel initPanel, LinedPanel initParent)(Code) | | Constructor for the DragPanelAdapter object
Parameters: initPanel - Description of Parameter Parameters: initParent - Description of Parameter |
mouseClicked | public void mouseClicked(MouseEvent mevt)(Code) | | Process a mouse click action
Parameters: mevt - the mouse event |
mouseDragged | public void mouseDragged(MouseEvent mevt)(Code) | | Notifies this object that it is being dragged
Parameters: mevt - The mouse object |
mouseEntered | public void mouseEntered(MouseEvent mevt)(Code) | | Process the mouse entering the component
Parameters: mevt - the mouse event |
mouseExited | public void mouseExited(MouseEvent mevt)(Code) | | Process the mouse leaving the component
Parameters: mevt - the mouse event |
mouseMoved | public void mouseMoved(MouseEvent mevt)(Code) | | What to do when the mouse moves. Nothing.
Parameters: mevt - the mouse event |
mousePressed | public void mousePressed(MouseEvent mevt)(Code) | | Process a mouse button press
Parameters: mevt - the mouse event |
mouseReleased | public void mouseReleased(MouseEvent mevt)(Code) | | User released the mouse button
Parameters: mevt - the mouse event |
|
|
|