com.inet.editor.handler
Interface HyperlinkHandler


public interface HyperlinkHandler

This interface can be used to modify the behavior of the BaseEditor hyperlink listener. To use this interface register an implementation of this class at the BaseEditor.
Note: The functions of this interface will be called by the editor BEFORE it's own routines are excuted.


Method Summary
 boolean processActivated(javax.swing.event.HyperlinkEvent event)
          Will be called whenever the hyperlink listener receives a hyperlink activated event.
 boolean processEntered(javax.swing.event.HyperlinkEvent event)
          Will be called whenever the hyperlink listener receives a hyperlink entered event.
 boolean processExited(javax.swing.event.HyperlinkEvent event)
          Will be called whenever the hyperlink listener receives a hyperlink exited event.
 

Method Detail

processEntered

boolean processEntered(javax.swing.event.HyperlinkEvent event)
Will be called whenever the hyperlink listener receives a hyperlink entered event.

Parameters:
event - the current event
Returns:
return true here, if the normal processing of the hyperlink listener should not be executed, false otherwise

processActivated

boolean processActivated(javax.swing.event.HyperlinkEvent event)
Will be called whenever the hyperlink listener receives a hyperlink activated event.

Parameters:
event - the current event
Returns:
return true here, if the normal processing of the hyperlink listener should not be executed, false otherwise

processExited

boolean processExited(javax.swing.event.HyperlinkEvent event)
Will be called whenever the hyperlink listener receives a hyperlink exited event.

Parameters:
event - the current event
Returns:
return true here, if the normal processing of the hyperlink listener should not be executed, false otherwise