Uses of Class
com.lowagie.rups.view.itext.treenodes.PdfObjectTreeNode
-
Packages that use PdfObjectTreeNode Package Description com.lowagie.rups.controller com.lowagie.rups.model com.lowagie.rups.view.itext com.lowagie.rups.view.itext.treenodes -
-
Uses of PdfObjectTreeNode in com.lowagie.rups.controller
Methods in com.lowagie.rups.controller with parameters of type PdfObjectTreeNode Modifier and Type Method Description void
PdfReaderController. selectNode(PdfObjectTreeNode node)
Selects a node in the PdfTree. -
Uses of PdfObjectTreeNode in com.lowagie.rups.model
Fields in com.lowagie.rups.model with type parameters of type PdfObjectTreeNode Modifier and Type Field Description protected java.util.ArrayList<PdfObjectTreeNode>
TreeNodeFactory. nodes
An list containing the nodes of every indirect object.Methods in com.lowagie.rups.model that return PdfObjectTreeNode Modifier and Type Method Description PdfObjectTreeNode
TreeNodeFactory. getChildNode(PdfObjectTreeNode node, PdfName key)
Finds a specific child of dictionary node.PdfObjectTreeNode
TreeNodeFactory. getNode(int ref)
Gets a TreeNode for an indirect objects.Methods in com.lowagie.rups.model with parameters of type PdfObjectTreeNode Modifier and Type Method Description private void
TreeNodeFactory. addNodes(PdfObjectTreeNode parent, PdfObjectTreeNode child)
Tries adding a child node to a parent node without throwing an exception.void
TreeNodeFactory. expandNode(PdfObjectTreeNode node)
Creates the Child TreeNode objects for a PDF object TreeNode.PdfObjectTreeNode
TreeNodeFactory. getChildNode(PdfObjectTreeNode node, PdfName key)
Finds a specific child of dictionary node. -
Uses of PdfObjectTreeNode in com.lowagie.rups.view.itext
Methods in com.lowagie.rups.view.itext with parameters of type PdfObjectTreeNode Modifier and Type Method Description private void
FormTree. loadFields(TreeNodeFactory factory, FormTreeNode form_node, PdfObjectTreeNode object_node)
Method that can be used recursively to load the fields hierarchy into the tree.private void
OutlineTree. loadOutline(TreeNodeFactory factory, OutlineTreeNode parent, PdfObjectTreeNode child)
Method that can be used recursively to load the outline hierarchy into the tree.private void
FormTree. loadXfa(TreeNodeFactory factory, XfaTreeNode form_node, PdfObjectTreeNode object_node)
Method that will load the nodes that refer to XFA streams.void
PdfTree. selectNode(PdfObjectTreeNode node)
Select a specific node in the tree. -
Uses of PdfObjectTreeNode in com.lowagie.rups.view.itext.treenodes
Subclasses of PdfObjectTreeNode in com.lowagie.rups.view.itext.treenodes Modifier and Type Class Description class
PdfPagesTreeNode
A tree node corresponding with a Pages dictionary in a PDF file.class
PdfPageTreeNode
A tree node corresponding with a Page dictionary in a PDF file.class
PdfTrailerTreeNode
A special treenode that will be used for the trailer dictionary of a PDF file.Fields in com.lowagie.rups.view.itext.treenodes declared as PdfObjectTreeNode Modifier and Type Field Description protected PdfObjectTreeNode
FormTreeNode. object_node
The corresponding tree node in the PdfTree.protected PdfObjectTreeNode
OutlineTreeNode. object_node
The corresponding tree node in the PdfTree.Methods in com.lowagie.rups.view.itext.treenodes that return PdfObjectTreeNode Modifier and Type Method Description PdfObjectTreeNode
PdfObjectTreeNode. getAncestor()
Gets the tree path of an ancestor.PdfObjectTreeNode
FormTreeNode. getCorrespondingPdfObjectNode()
Gets the node in the PdfTree that corresponds with this FormTreeNode.PdfObjectTreeNode
OutlineTreeNode. getCorrespondingPdfObjectNode()
Gets the node in the PdfTree that corresponds with this OutlineTreeNode.static PdfObjectTreeNode
PdfObjectTreeNode. getInstance(PdfDictionary dict, PdfName key)
Creates an instance of a tree node for the object corresponding with a key in a dictionary.static PdfObjectTreeNode
PdfObjectTreeNode. getInstance(PdfObject object)
Creates an instance of a tree node for a PDF object.static PdfObjectTreeNode
PdfObjectTreeNode. getInstance(PdfObject object, int number)
Creates an instance of a tree node for an indirect object.Methods in com.lowagie.rups.view.itext.treenodes with parameters of type PdfObjectTreeNode Modifier and Type Method Description void
XfaTreeNode. addPacket(java.lang.String key, PdfObjectTreeNode value)
Adds a child node to the XFA root.Constructors in com.lowagie.rups.view.itext.treenodes with parameters of type PdfObjectTreeNode Constructor Description FormTreeNode(PdfObjectTreeNode node)
Creates a node corresponding with a node in the PdfTree.OutlineTreeNode(PdfObjectTreeNode node)
Creates a node corresponding with a node in the PdfTree.XfaTreeNode(PdfObjectTreeNode xfa)
Creates the root node of the XFA tree.
-