com.azalient.api.b.display
Interface IHyperlinkDrawableTarget


public interface IHyperlinkDrawableTarget

If a network object implements this interface, then it can be the target of a hyperlink. That is, a hyperlink label would cause the viewpoint to move to the gotoPoint()


Method Summary
 IXyz goToPoint()
          The point to which the hyper link will move the view, for example a node location.
 String name()
          A name, used as the default label for the hyperlink
 String prefix()
          A prefix such as NODE used to identify the type of the target.
 

Method Detail

name

String name()
A name, used as the default label for the hyperlink


prefix

String prefix()
A prefix such as NODE used to identify the type of the target. Note: can't use getClass() because of obfuscation


goToPoint

IXyz goToPoint()
The point to which the hyper link will move the view, for example a node location. This is different to the location of the hyperlink itself (the label position). That is click on a hyper link at [label position] ===> move to [goToPoint]