Uses of Class
org.apache.jasper.xmlparser.TreeNode
-
Packages that use TreeNode Package Description org.apache.jasper.compiler org.apache.jasper.xmlparser -
-
Uses of TreeNode in org.apache.jasper.compiler
Methods in org.apache.jasper.compiler with parameters of type TreeNode Modifier and Type Method Description private javax.servlet.jsp.tagext.TagAttributeInfoTagLibraryInfoImpl. createAttribute(TreeNode elem, java.lang.String jspVersion)private javax.servlet.jsp.tagext.FunctionInfoTagLibraryInfoImpl. createFunctionInfo(TreeNode elem)private java.lang.String[]TagLibraryInfoImpl. createInitParam(TreeNode elem)private javax.servlet.jsp.tagext.TagFileInfoTagLibraryInfoImpl. createTagFileInfo(TreeNode elem, java.lang.String uri, java.net.URL jarFileUrl)private javax.servlet.jsp.tagext.TagInfoTagLibraryInfoImpl. createTagInfo(TreeNode elem, java.lang.String jspVersion)private javax.servlet.jsp.tagext.TagLibraryValidatorTagLibraryInfoImpl. createValidator(TreeNode elem)private javax.servlet.jsp.tagext.TagVariableInfoTagLibraryInfoImpl. createVariable(TreeNode elem) -
Uses of TreeNode in org.apache.jasper.xmlparser
Fields in org.apache.jasper.xmlparser declared as TreeNode Modifier and Type Field Description protected TreeNodeTreeNode. parentThe parent node of this node.Fields in org.apache.jasper.xmlparser with type parameters of type TreeNode Modifier and Type Field Description protected java.util.ArrayList<TreeNode>TreeNode. childrenThe children of this node, instantiated only if required.Methods in org.apache.jasper.xmlparser that return TreeNode Modifier and Type Method Description protected TreeNodeParserUtils. convert(TreeNode parent, org.w3c.dom.Node node)Create and return a TreeNode that corresponds to the specified Node, including processing all of the attributes and children nodes.TreeNodeTreeNode. findChild(java.lang.String name)Return the first child node of this node with the specified name, if there is one; otherwise, returnnull.TreeNodeParserUtils. parseXMLDocument(java.lang.String uri, java.io.InputStream is)Parse the specified XML document, and return aTreeNodethat corresponds to the root node of the document tree.TreeNodeParserUtils. parseXMLDocument(java.lang.String uri, java.io.InputStream is, boolean validate)Parse the specified XML document, and return aTreeNodethat corresponds to the root node of the document tree.TreeNodeParserUtils. parseXMLDocument(java.lang.String uri, org.xml.sax.InputSource is)Parse the specified XML document, and return aTreeNodethat corresponds to the root node of the document tree.TreeNodeParserUtils. parseXMLDocument(java.lang.String uri, org.xml.sax.InputSource is, boolean validate)Parse the specified XML document, and return aTreeNodethat corresponds to the root node of the document tree.Methods in org.apache.jasper.xmlparser that return types with arguments of type TreeNode Modifier and Type Method Description java.util.Iterator<TreeNode>TreeNode. findChildren()Return an Iterator of all children of this node.java.util.Iterator<TreeNode>TreeNode. findChildren(java.lang.String name)Return an Iterator over all children of this node that have the specified name.Methods in org.apache.jasper.xmlparser with parameters of type TreeNode Modifier and Type Method Description voidTreeNode. addChild(TreeNode node)Add a new child node to this node.protected TreeNodeParserUtils. convert(TreeNode parent, org.w3c.dom.Node node)Create and return a TreeNode that corresponds to the specified Node, including processing all of the attributes and children nodes.voidTreeNode. removeNode(TreeNode node)Remove a child node from this node, if it is one.protected voidTreeNode. toString(java.lang.StringBuilder sb, int indent, TreeNode node)Append to the specified StringBuilder a character representation of this node, with the specified amount of indentation.Constructors in org.apache.jasper.xmlparser with parameters of type TreeNode Constructor Description TreeNode(java.lang.String name, TreeNode parent)Construct a new node with the specified parent.
-