Class PDPageAdditionalActions
- java.lang.Object
-
- com.tom_roush.pdfbox.pdmodel.interactive.action.PDPageAdditionalActions
-
- All Implemented Interfaces:
COSObjectable
public class PDPageAdditionalActions extends Object implements COSObjectable
This class represents a page object's dictionary of actions that occur due to events.
-
-
Constructor Summary
Constructors Constructor Description PDPageAdditionalActions()Default constructor.PDPageAdditionalActions(COSDictionary a)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PDActiongetC()This will get an action to be performed when the page is closed.COSDictionarygetCOSObject()Convert this standard java object to a COS object.PDActiongetO()This will get an action to be performed when the page is opened.voidsetC(PDAction c)This will set an action to be performed when the page is closed.voidsetO(PDAction o)This will set an action to be performed when the page is opened.
-
-
-
Constructor Detail
-
PDPageAdditionalActions
public PDPageAdditionalActions()
Default constructor.
-
PDPageAdditionalActions
public PDPageAdditionalActions(COSDictionary a)
Constructor.- Parameters:
a- The action dictionary.
-
-
Method Detail
-
getCOSObject
public COSDictionary getCOSObject()
Convert this standard java object to a COS object.- Specified by:
getCOSObjectin interfaceCOSObjectable- Returns:
- The cos object that matches this Java object.
-
getO
public PDAction getO()
This will get an action to be performed when the page is opened. This action is independent of any that may be defined by the OpenAction entry in the document catalog, and is executed after such an action.- Returns:
- The O entry of page object's additional actions dictionary.
-
setO
public void setO(PDAction o)
This will set an action to be performed when the page is opened. This action is independent of any that may be defined by the OpenAction entry in the document catalog, and is executed after such an action.- Parameters:
o- The action to be performed.
-
getC
public PDAction getC()
This will get an action to be performed when the page is closed. This action applies to the page being closed, and is executed before any other page opened.- Returns:
- The C entry of page object's additional actions dictionary.
-
setC
public void setC(PDAction c)
This will set an action to be performed when the page is closed. This action applies to the page being closed, and is executed before any other page opened.- Parameters:
c- The action to be performed.
-
-