Package javax.help
Class BackAction
- java.lang.Object
-
- javax.help.AbstractHelpAction
-
- javax.help.BackAction
-
- All Implemented Interfaces:
java.awt.event.MouseListener
,java.util.EventListener
,HelpHistoryModelListener
,HelpAction
public class BackAction extends AbstractHelpAction implements java.awt.event.MouseListener, HelpHistoryModelListener
-
-
Constructor Summary
Constructors Constructor Description BackAction(java.lang.Object control)
Creates new BackAction
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
historyChanged(HelpHistoryModelEvent e)
Tells the listener that the history has changed.void
mouseClicked(java.awt.event.MouseEvent e)
Invoked when the mouse has been clicked on a component.void
mouseEntered(java.awt.event.MouseEvent e)
Invoked when the mouse enters a component.void
mouseExited(java.awt.event.MouseEvent e)
Invoked when the mouse exits a component.void
mousePressed(java.awt.event.MouseEvent e)
Invoked when a mouse button has been pressed on a component.void
mouseReleased(java.awt.event.MouseEvent e)
Invoked when a mouse button has been released on a component.-
Methods inherited from class javax.help.AbstractHelpAction
addPropertyChangeListener, firePropertyChange, getControl, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled
-
-
-
-
Method Detail
-
mouseExited
public void mouseExited(java.awt.event.MouseEvent e)
Invoked when the mouse exits a component.- Specified by:
mouseExited
in interfacejava.awt.event.MouseListener
-
mouseReleased
public void mouseReleased(java.awt.event.MouseEvent e)
Invoked when a mouse button has been released on a component.- Specified by:
mouseReleased
in interfacejava.awt.event.MouseListener
-
mousePressed
public void mousePressed(java.awt.event.MouseEvent e)
Invoked when a mouse button has been pressed on a component.- Specified by:
mousePressed
in interfacejava.awt.event.MouseListener
-
mouseClicked
public void mouseClicked(java.awt.event.MouseEvent e)
Invoked when the mouse has been clicked on a component.- Specified by:
mouseClicked
in interfacejava.awt.event.MouseListener
-
mouseEntered
public void mouseEntered(java.awt.event.MouseEvent e)
Invoked when the mouse enters a component.- Specified by:
mouseEntered
in interfacejava.awt.event.MouseListener
-
historyChanged
public void historyChanged(HelpHistoryModelEvent e)
Tells the listener that the history has changed. Will enable/disable the Action depending on the events previous flag- Specified by:
historyChanged
in interfaceHelpHistoryModelListener
- Parameters:
e
- The HelpHistoryModelEvent
-
-