Package com.tom_roush.pdfbox.pdmodel
Class PDStructureElementNameTreeNode
- java.lang.Object
-
- com.tom_roush.pdfbox.pdmodel.common.PDNameTreeNode<PDStructureElement>
-
- com.tom_roush.pdfbox.pdmodel.PDStructureElementNameTreeNode
-
- All Implemented Interfaces:
COSObjectable
public class PDStructureElementNameTreeNode extends PDNameTreeNode<PDStructureElement>
todo: JavaDoc
-
-
Constructor Summary
Constructors Constructor Description PDStructureElementNameTreeNode()Constructor.PDStructureElementNameTreeNode(COSDictionary dic)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected PDStructureElementconvertCOSToPD(COSBase base)Method to convert the COS value in the name tree to the PD Model object.protected PDNameTreeNode<PDStructureElement>createChildNode(COSDictionary dic)Create a child node object.-
Methods inherited from class com.tom_roush.pdfbox.pdmodel.common.PDNameTreeNode
getCOSObject, getKids, getLowerLimit, getNames, getParent, getUpperLimit, getValue, isRootNode, setKids, setNames, setParent
-
-
-
-
Constructor Detail
-
PDStructureElementNameTreeNode
public PDStructureElementNameTreeNode()
Constructor.
-
PDStructureElementNameTreeNode
public PDStructureElementNameTreeNode(COSDictionary dic)
Constructor.- Parameters:
dic- The COS dictionary.
-
-
Method Detail
-
convertCOSToPD
protected PDStructureElement convertCOSToPD(COSBase base) throws IOException
Description copied from class:PDNameTreeNodeMethod to convert the COS value in the name tree to the PD Model object. The default implementation will simply return the given COSBase object. Subclasses should do something specific.- Specified by:
convertCOSToPDin classPDNameTreeNode<PDStructureElement>- Parameters:
base- The COS object to convert.- Returns:
- The converted PD Model object.
- Throws:
IOException- If there is an error during creation.
-
createChildNode
protected PDNameTreeNode<PDStructureElement> createChildNode(COSDictionary dic)
Description copied from class:PDNameTreeNodeCreate a child node object.- Specified by:
createChildNodein classPDNameTreeNode<PDStructureElement>- Parameters:
dic- The dictionary for the child node object to refer to.- Returns:
- The new child node object.
-
-