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 void
mouseClicked(JmriMouseEvent event)
Invoked when the mouse button has been clicked (pressed and released) on a component.void
mouseEntered(JmriMouseEvent event)
Invoked when the mouse enters a component.void
mouseExited(JmriMouseEvent event)
Invoked when the mouse exits a component.void
mousePressed(JmriMouseEvent event)
Invoked when a mouse button has been pressed on a component.void
mouseReleased(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:JmriMouseListener
Invoked when the mouse button has been clicked (pressed and released) on a component.- Specified by:
mouseClicked
in interfaceJmriMouseListener
- Parameters:
event
- the event to be processed
-
mousePressed
public void mousePressed(JmriMouseEvent event)
Description copied from interface:JmriMouseListener
Invoked when a mouse button has been pressed on a component.- Specified by:
mousePressed
in interfaceJmriMouseListener
- Parameters:
event
- the event to be processed
-
mouseReleased
public void mouseReleased(JmriMouseEvent e)
Description copied from interface:JmriMouseListener
Invoked when a mouse button has been released on a component.- Specified by:
mouseReleased
in interfaceJmriMouseListener
- Parameters:
e
- the event to be processed
-
mouseEntered
public void mouseEntered(JmriMouseEvent event)
Description copied from interface:JmriMouseListener
Invoked when the mouse enters a component.- Specified by:
mouseEntered
in interfaceJmriMouseListener
- Parameters:
event
- the event to be processed
-
mouseExited
public void mouseExited(JmriMouseEvent event)
Description copied from interface:JmriMouseListener
Invoked when the mouse exits a component.- Specified by:
mouseExited
in interfaceJmriMouseListener
- Parameters:
event
- the event to be processed
-
-