Package org.eclipse.ui.forms.events
Class HyperlinkAdapter
java.lang.Object
org.eclipse.ui.forms.events.HyperlinkAdapter
- All Implemented Interfaces:
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
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidSent when the link is activated.voidSent when the link is entered.voidSent when the link is exited.
-
Constructor Details
-
HyperlinkAdapter
public HyperlinkAdapter()
-
-
Method Details
-
linkEntered
Sent when the link is entered. The default behaviour is to do nothing.- Specified by:
linkEnteredin interfaceIHyperlinkListener- Parameters:
e- the event
-
linkExited
Sent when the link is exited. The default behaviour is to do nothing.- Specified by:
linkExitedin interfaceIHyperlinkListener- Parameters:
e- the event
-
linkActivated
Sent when the link is activated. The default behaviour is to do nothing.- Specified by:
linkActivatedin interfaceIHyperlinkListener- Parameters:
e- the event
-