Class PDActionThread
- java.lang.Object
-
- org.apache.pdfbox.pdmodel.interactive.action.PDAction
-
- org.apache.pdfbox.pdmodel.interactive.action.PDActionThread
-
- All Implemented Interfaces:
COSObjectable
,PDDestinationOrAction
public class PDActionThread extends PDAction
This represents a thread action that can be executed in a PDF document.
-
-
Constructor Summary
Constructors Constructor Description PDActionThread()
Default constructor.PDActionThread(COSDictionary a)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description COSBase
getB()
COSBase
getD()
PDFileSpecification
getFile()
This will get the file in which the destination is located.void
setB(COSBase b)
void
setD(COSBase d)
void
setFile(PDFileSpecification fs)
This will set the file in which the destination is located.-
Methods inherited from class org.apache.pdfbox.pdmodel.interactive.action.PDAction
getCOSObject, getNext, getSubType, getType, setNext, setSubType, setType
-
-
-
-
Field Detail
-
SUB_TYPE
public static final java.lang.String SUB_TYPE
This type of action this object represents.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PDActionThread
public PDActionThread()
Default constructor.
-
PDActionThread
public PDActionThread(COSDictionary a)
Constructor.- Parameters:
a
- The action dictionary.
-
-
Method Detail
-
getD
public COSBase getD()
- Returns:
- The D entry of the specific thread action dictionary.
-
setD
public void setD(COSBase d)
- Parameters:
d
- The destination.
-
getFile
public PDFileSpecification getFile() throws java.io.IOException
This will get the file in which the destination is located.- Returns:
- The F entry of the specific thread action dictionary.
- Throws:
java.io.IOException
- If there is an error creating the file spec.
-
setFile
public void setFile(PDFileSpecification fs)
This will set the file in which the destination is located.- Parameters:
fs
- The file specification.
-
getB
public COSBase getB()
- Returns:
- The B entry of the specific thread action dictionary.
-
setB
public void setB(COSBase b)
- Parameters:
b
- The destination.
-
-