Package org.apache.fop.pdf
Class StructureHierarchyMember
- java.lang.Object
-
- org.apache.fop.pdf.PDFObject
-
- org.apache.fop.pdf.PDFDictionary
-
- org.apache.fop.pdf.StructureHierarchyMember
-
- All Implemented Interfaces:
PDFWritable
- Direct Known Subclasses:
PDFStructElem
,PDFStructTreeRoot
public abstract class StructureHierarchyMember extends PDFDictionary
An element in the document's structure tree. This can be either the structure tree root or a structure element. "Section 10.6, Logical Structure of the PDF Reference, 4th edition (PDF 1.5)"
-
-
Field Summary
-
Fields inherited from class org.apache.fop.pdf.PDFDictionary
entries, order
-
-
Constructor Summary
Constructors Constructor Description StructureHierarchyMember()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract void
addKid(PDFObject kid)
Adds the given object to the array of kids.-
Methods inherited from class org.apache.fop.pdf.PDFDictionary
containsKey, get, getChildren, getChildren, keySet, output, put, put, remove, writeDictionary
-
Methods inherited from class org.apache.fop.pdf.PDFObject
contentEquals, encode, encodeBinaryToHexString, encodeString, encodeText, formatObject, getDocument, getDocumentSafely, getGeneration, getObjectID, getObjectNumber, getParent, hasObjectNumber, makeReference, outputInline, referencePDF, setDocument, setObjectNumber, setObjectNumber, setObjectNumber, setParent, toPDF, toPDFString
-
-
-
-
Method Detail
-
addKid
public abstract void addKid(PDFObject kid)
Adds the given object to the array of kids.- Parameters:
kid
- an object to be added to the K entry
-
-