IInteractiveDevice
public interface IInteractiveDevice
The interface defining interactive features processing methods.
Methods
| Method | Description |
|---|---|
| addOutline(int outlineLevel, String description) | Adds an outline item with the last object as its target. |
| addOutline(Point2D origin, int outlineLevel, String description) | Adds an outline item with the origin point as its target. |
| setHyperlinkTarget(int targetPageNumber) | Set the hyperlink with a page number as its target. |
| setHyperlinkTarget(String targetUri) | Set the hyperlink with an external URI as its target. |
addOutline(int outlineLevel, String description)
public abstract void addOutline(int outlineLevel, String description)
Adds an outline item with the last object as its target.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| outlineLevel | int | The outline level. |
| description | java.lang.String | The item description. |
addOutline(Point2D origin, int outlineLevel, String description)
public abstract void addOutline(Point2D origin, int outlineLevel, String description)
Adds an outline item with the origin point as its target.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| origin | java.awt.geom.Point2D | The target origin. |
| outlineLevel | int | The outline level. |
| description | java.lang.String | The item description. |
setHyperlinkTarget(int targetPageNumber)
public abstract void setHyperlinkTarget(int targetPageNumber)
Set the hyperlink with a page number as its target.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| targetPageNumber | int | The target page number. |
setHyperlinkTarget(String targetUri)
public abstract void setHyperlinkTarget(String targetUri)
Set the hyperlink with an external URI as its target.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| targetUri | java.lang.String | The target external URI. |