Package jpicedt.graphic.event
Class PEMouseInputAdapter
- java.lang.Object
-
- jpicedt.graphic.event.PEMouseInputAdapter
-
- All Implemented Interfaces:
java.util.EventListener,PEMouseInputListener
public class PEMouseInputAdapter extends java.lang.Object implements PEMouseInputListener
An abstract adapter class for receiving PEMouseEvent's. The methods in this class are empty. This class exists as convenience for creating listener objects.- Since:
- jpicedt 1.3.2
- Version:
- $Id: PEMouseInputAdapter.java,v 1.5.2.1 2007/09/02 11:56:18 reynal Exp $
- Author:
- Sylvain Reynal
-
-
Constructor Summary
Constructors Constructor Description PEMouseInputAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidmouseClicked(PEMouseEvent e)Invoked when the mouse button has been clicked (pressed and released) on a component.voidmouseDragged(PEMouseEvent e)Invoked when a mouse button is pressed on a component and then dragged.voidmouseEntered(PEMouseEvent e)Invoked when the mouse enters a component.voidmouseExited(PEMouseEvent e)nvoked when the mouse exits a component.voidmouseMoved(PEMouseEvent e)Invoked when the mouse button has been moved on a component (with no buttons down).voidmousePressed(PEMouseEvent e)Invoked when a mouse button has been pressed on a component.voidmouseReleased(PEMouseEvent e)Invoked when a mouse button has been released on a component.
-
-
-
Method Detail
-
mousePressed
public void mousePressed(PEMouseEvent e)
Description copied from interface:PEMouseInputListenerInvoked when a mouse button has been pressed on a component.- Specified by:
mousePressedin interfacePEMouseInputListener
-
mouseReleased
public void mouseReleased(PEMouseEvent e)
Description copied from interface:PEMouseInputListenerInvoked when a mouse button has been released on a component.- Specified by:
mouseReleasedin interfacePEMouseInputListener
-
mouseClicked
public void mouseClicked(PEMouseEvent e)
Description copied from interface:PEMouseInputListenerInvoked when the mouse button has been clicked (pressed and released) on a component.- Specified by:
mouseClickedin interfacePEMouseInputListener
-
mouseMoved
public void mouseMoved(PEMouseEvent e)
Description copied from interface:PEMouseInputListenerInvoked when the mouse button has been moved on a component (with no buttons down).- Specified by:
mouseMovedin interfacePEMouseInputListener
-
mouseDragged
public void mouseDragged(PEMouseEvent e)
Description copied from interface:PEMouseInputListenerInvoked when a mouse button is pressed on a component and then dragged.- Specified by:
mouseDraggedin interfacePEMouseInputListener
-
mouseEntered
public void mouseEntered(PEMouseEvent e)
Description copied from interface:PEMouseInputListenerInvoked when the mouse enters a component.- Specified by:
mouseEnteredin interfacePEMouseInputListener
-
mouseExited
public void mouseExited(PEMouseEvent e)
Description copied from interface:PEMouseInputListenernvoked when the mouse exits a component.- Specified by:
mouseExitedin interfacePEMouseInputListener
-
-