Package org.apache.fop.pdf
Class PDFInternalLink
- java.lang.Object
-
- org.apache.fop.pdf.PDFObject
-
- org.apache.fop.pdf.PDFAction
-
- org.apache.fop.pdf.PDFInternalLink
-
- All Implemented Interfaces:
PDFWritable
public class PDFInternalLink extends PDFAction
class used to create a PDF internal link
-
-
Constructor Summary
Constructors Constructor Description PDFInternalLink(java.lang.String goToReference)
create an internal link instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAction()
returns the action ncecessary for an internal linkprotected java.lang.String
toPDFString()
This method returns a String representation of the PDF object.-
Methods inherited from class org.apache.fop.pdf.PDFObject
contentEquals, encode, encodeBinaryToHexString, encodeString, encodeText, formatObject, getChildren, getDocument, getDocumentSafely, getGeneration, getObjectID, getObjectNumber, getParent, hasObjectNumber, makeReference, output, outputInline, referencePDF, setDocument, setObjectNumber, setObjectNumber, setObjectNumber, setParent, toPDF
-
-
-
-
Method Detail
-
getAction
public java.lang.String getAction()
returns the action ncecessary for an internal link
-
toPDFString
protected java.lang.String toPDFString()
This method returns a String representation of the PDF object. The result is normally converted/encoded to a byte array by toPDF(). Only use this method to implement the serialization if the object can be fully represented as text. If the PDF representation of the object contains binary content use toPDF() or output(OutputStream) instead. This applies to any object potentially containing a string object because string object are encrypted and therefore need to be binary.- Overrides:
toPDFString
in classPDFObject
- Returns:
- String the String representation
-
-