Package javax.help
Class ForwardAction
- java.lang.Object
-
- javax.help.AbstractHelpAction
-
- javax.help.ForwardAction
-
- All Implemented Interfaces:
java.awt.event.MouseListener,java.util.EventListener,HelpHistoryModelListener,HelpAction
public class ForwardAction extends AbstractHelpAction implements java.awt.event.MouseListener, HelpHistoryModelListener
-
-
Constructor Summary
Constructors Constructor Description ForwardAction(java.lang.Object control)Creates new ForwardAction
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidhistoryChanged(HelpHistoryModelEvent e)Tells the listener that the history has changed.voidmouseClicked(java.awt.event.MouseEvent e)Invoked when the mouse has been clicked on a component.voidmouseEntered(java.awt.event.MouseEvent e)Invoked when the mouse enters a component.voidmouseExited(java.awt.event.MouseEvent e)Invoked when the mouse exits a component.voidmousePressed(java.awt.event.MouseEvent e)Invoked when a mouse button has been pressed on a component.voidmouseReleased(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:
mouseExitedin 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:
mouseReleasedin 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:
mousePressedin 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:
mouseClickedin interfacejava.awt.event.MouseListener
-
mouseEntered
public void mouseEntered(java.awt.event.MouseEvent e)
Invoked when the mouse enters a component.- Specified by:
mouseEnteredin 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:
historyChangedin interfaceHelpHistoryModelListener- Parameters:
e- The HelpHistoryModelEvent
-
-