Package jmri.jmrit.catalog
Class CatalogPanel.IconListener
- java.lang.Object
-
- jmri.jmrit.catalog.CatalogPanel.IconListener
-
- All Implemented Interfaces:
java.util.EventListener,JmriMouseListener
- Enclosing class:
- CatalogPanel
class CatalogPanel.IconListener extends java.lang.Object implements JmriMouseListener
-
-
Constructor Summary
Constructors Constructor Description IconListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidmouseClicked(JmriMouseEvent event)Invoked when the mouse button has been clicked (pressed and released) on a component.voidmouseEntered(JmriMouseEvent event)Invoked when the mouse enters a component.voidmouseExited(JmriMouseEvent event)Invoked when the mouse exits a component.voidmousePressed(JmriMouseEvent event)Invoked when a mouse button has been pressed on a component.voidmouseReleased(JmriMouseEvent e)Invoked when a mouse button has been released on a component.
-
-
-
Constructor Detail
-
IconListener
IconListener()
-
-
Method Detail
-
mouseClicked
public void mouseClicked(JmriMouseEvent event)
Description copied from interface:JmriMouseListenerInvoked when the mouse button has been clicked (pressed and released) on a component.- Specified by:
mouseClickedin interfaceJmriMouseListener- Parameters:
event- the event to be processed
-
mousePressed
public void mousePressed(JmriMouseEvent event)
Description copied from interface:JmriMouseListenerInvoked when a mouse button has been pressed on a component.- Specified by:
mousePressedin interfaceJmriMouseListener- Parameters:
event- the event to be processed
-
mouseReleased
public void mouseReleased(JmriMouseEvent e)
Description copied from interface:JmriMouseListenerInvoked when a mouse button has been released on a component.- Specified by:
mouseReleasedin interfaceJmriMouseListener- Parameters:
e- the event to be processed
-
mouseEntered
public void mouseEntered(JmriMouseEvent event)
Description copied from interface:JmriMouseListenerInvoked when the mouse enters a component.- Specified by:
mouseEnteredin interfaceJmriMouseListener- Parameters:
event- the event to be processed
-
mouseExited
public void mouseExited(JmriMouseEvent event)
Description copied from interface:JmriMouseListenerInvoked when the mouse exits a component.- Specified by:
mouseExitedin interfaceJmriMouseListener- Parameters:
event- the event to be processed
-
-