Class Link
- java.lang.Object
-
- org.apache.fop.render.intermediate.extensions.Link
-
public class Link extends java.lang.Object
This class is a link element for use in the intermediate format.
-
-
Constructor Summary
Constructors Constructor Description Link(AbstractAction action, java.awt.Rectangle targetRect)
Creates a new named destination.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AbstractAction
getAction()
Returns the action performed when the destination is selected.java.awt.Rectangle
getTargetRect()
Returns the target rectangle, i.e.void
setAction(AbstractAction action)
Sets the action performed when the destination is selected.
-
-
-
Constructor Detail
-
Link
public Link(AbstractAction action, java.awt.Rectangle targetRect)
Creates a new named destination.- Parameters:
action
- the action performed when the destination is selectedtargetRect
- the target rectangle (coordinates in millipoints)
-
-
Method Detail
-
getAction
public AbstractAction getAction()
Returns the action performed when the destination is selected.- Returns:
- the action
-
getTargetRect
public java.awt.Rectangle getTargetRect()
Returns the target rectangle, i.e. the hot zone in which the link is activated.- Returns:
- the target rectangle
-
setAction
public void setAction(AbstractAction action)
Sets the action performed when the destination is selected.- Parameters:
action
- the action
-
-