Package org.eclipse.ui.forms.events
Class HyperlinkAdapter
- java.lang.Object
-
- org.eclipse.ui.forms.events.HyperlinkAdapter
-
- All Implemented Interfaces:
IHyperlinkListener
public class HyperlinkAdapter extends Object implements IHyperlinkListener
This adapter class provides default implementations for the methods described by theHyperlinkListenerinterface.Classes that wish to deal with
HyperlinkEvents can extend this class and override only the methods which they are interested in.- Since:
- 3.0
- See Also:
IHyperlinkListener,HyperlinkEvent
-
-
Constructor Summary
Constructors Constructor Description HyperlinkAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidlinkActivated(HyperlinkEvent e)Sent when the link is activated.voidlinkEntered(HyperlinkEvent e)Sent when the link is entered.voidlinkExited(HyperlinkEvent e)Sent when the link is exited.
-
-
-
Method Detail
-
linkEntered
public void linkEntered(HyperlinkEvent e)
Sent when the link is entered. The default behaviour is to do nothing.- Specified by:
linkEnteredin interfaceIHyperlinkListener- Parameters:
e- the event
-
linkExited
public void linkExited(HyperlinkEvent e)
Sent when the link is exited. The default behaviour is to do nothing.- Specified by:
linkExitedin interfaceIHyperlinkListener- Parameters:
e- the event
-
linkActivated
public void linkActivated(HyperlinkEvent e)
Sent when the link is activated. The default behaviour is to do nothing.- Specified by:
linkActivatedin interfaceIHyperlinkListener- Parameters:
e- the event
-
-