Class PDAdditionalActions
- java.lang.Object
-
- org.apache.pdfbox.pdmodel.interactive.action.PDAdditionalActions
-
- All Implemented Interfaces:
COSObjectable
public class PDAdditionalActions extends java.lang.Object implements COSObjectable
This represents a dictionary of actions that occur due to events.
-
-
Field Summary
Fields Modifier and Type Field Description private COSDictionary
actions
-
Constructor Summary
Constructors Constructor Description PDAdditionalActions()
Default constructor.PDAdditionalActions(COSDictionary a)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description COSDictionary
getCOSObject()
Convert this standard java object to a COS object.PDAction
getF()
Get the F action.void
setF(PDAction action)
Set the F action.
-
-
-
Field Detail
-
actions
private final COSDictionary actions
-
-
Constructor Detail
-
PDAdditionalActions
public PDAdditionalActions()
Default constructor.
-
PDAdditionalActions
public PDAdditionalActions(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:
getCOSObject
in interfaceCOSObjectable
- Returns:
- The cos object that matches this Java object.
-
getF
public PDAction getF()
Get the F action.- Returns:
- The F action.
-
setF
public void setF(PDAction action)
Set the F action.- Parameters:
action
- Get the F action.
-
-