Uses of Class
org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure.PDStructureNode

Packages that use PDStructureNode
org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure The logical structure package provides a mechanism for incorporating structural information about a document's content into a PDF file. 
 

Uses of PDStructureNode in org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure
 

Subclasses of PDStructureNode in org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure
 class PDStructureElement
          A structure element.
 class PDStructureTreeRoot
          A root of a structure tree.
 

Methods in org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure that return PDStructureNode
static PDStructureNode PDStructureNode.create(COSDictionary node)
          Creates a node in the structure tree.
 PDStructureNode PDStructureElement.getParent()
          Returns the parent in the structure hierarchy (P).
 

Methods in org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure with parameters of type PDStructureNode
 void PDStructureElement.setParent(PDStructureNode structureNode)
          Sets the parent in the structure hierarchy (P).
 

Constructors in org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure with parameters of type PDStructureNode
PDStructureElement(String structureType, PDStructureNode parent)
          Constructor with required values.