com.lizardtech.djvu
Interface Hyperlink

All Known Implementing Classes:
Line, Oval, Poly, Rect, Text

public interface Hyperlink

This class is an abstraction of all hyperlinks used by the viewer.


Method Summary
 java.lang.String getTarget()
          Get the target for the URL.
 java.lang.String getURL()
          Get optional URL which this map area can be associated with.
 

Method Detail

getURL

java.lang.String getURL()
Get optional URL which this map area can be associated with. If it's not empty then clicking this map area with the mouse will make the browser load the HTML page referenced by this url. Note: This may also be a relative URL.

Returns:
the URL string

getTarget

java.lang.String getTarget()
Get the target for the URL. Standard targets are:
_blank - Load the link in a new blank window
_self - Load the link into the plugin window
_top - Load the link into the top-level frame

Returns:
DOCUMENT ME!