Uses of Class
org.apache.jasper.xmlparser.TreeNode
Packages that use TreeNode
-
Uses of TreeNode in org.apache.jasper.compiler
Methods in org.apache.jasper.compiler with parameters of type TreeNodeModifier and TypeMethodDescriptionprivate TagAttributeInfoTagLibraryInfoImpl.createAttribute(TreeNode elem, String jspVersion) private FunctionInfoTagLibraryInfoImpl.createFunctionInfo(TreeNode elem) private String[]TagLibraryInfoImpl.createInitParam(TreeNode elem) private TagFileInfoTagLibraryInfoImpl.createTagFileInfo(TreeNode elem, String uri, URL jarFileUrl) private TagInfoTagLibraryInfoImpl.createTagInfo(TreeNode elem, String jspVersion) private TagLibraryValidatorTagLibraryInfoImpl.createValidator(TreeNode elem) private TagVariableInfoTagLibraryInfoImpl.createVariable(TreeNode elem) -
Uses of TreeNode in org.apache.jasper.xmlparser
Fields in org.apache.jasper.xmlparser declared as TreeNodeModifier and TypeFieldDescriptionprotected TreeNodeTreeNode.parentThe parent node of this node.Fields in org.apache.jasper.xmlparser with type parameters of type TreeNodeModifier and TypeFieldDescriptionTreeNode.childrenThe children of this node, instantiated only if required.Methods in org.apache.jasper.xmlparser that return TreeNodeModifier and TypeMethodDescriptionprotected TreeNodeCreate and return a TreeNode that corresponds to the specified Node, including processing all of the attributes and children nodes.Return the first child node of this node with the specified name, if there is one; otherwise, returnnull.ParserUtils.parseXMLDocument(String uri, InputStream is) Parse the specified XML document, and return aTreeNodethat corresponds to the root node of the document tree.ParserUtils.parseXMLDocument(String uri, InputStream is, boolean validate) Parse the specified XML document, and return aTreeNodethat corresponds to the root node of the document tree.ParserUtils.parseXMLDocument(String uri, InputSource is) Parse the specified XML document, and return aTreeNodethat corresponds to the root node of the document tree.ParserUtils.parseXMLDocument(String uri, 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 TreeNodeModifier and TypeMethodDescriptionTreeNode.findChildren()Return an Iterator of all children of this node.TreeNode.findChildren(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 TreeNodeModifier and TypeMethodDescriptionvoidAdd a new child node to this node.protected TreeNodeCreate 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(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