java.lang.Object
org.eclipse.ui.forms.events.HyperlinkAdapter
- All Implemented Interfaces:
- IHyperlinkListener
- public class HyperlinkAdapter
- extends java.lang.Object
- implements IHyperlinkListener
This adapter class provides default implementations for the methods
described by the HyperlinkListener
interface.
Classes that wish to deal with HyperlinkEvent
s can extend
this class and override only the methods which they are interested in.
- Since:
- 3.0
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
HyperlinkAdapter
public HyperlinkAdapter()
linkEntered
public void linkEntered(HyperlinkEvent e)
- Sent when the link is entered. The default behaviour is to do nothing.
- Specified by:
linkEntered
in interface IHyperlinkListener
linkExited
public void linkExited(HyperlinkEvent e)
- Sent when the link is exited. The default behaviour is to do nothing.
- Specified by:
linkExited
in interface IHyperlinkListener
linkActivated
public void linkActivated(HyperlinkEvent e)
- Sent when the link is activated. The default behaviour is to do nothing.
- Specified by:
linkActivated
in interface IHyperlinkListener