Uses of Class
com.puppycrawl.tools.checkstyle.xpath.AbstractNode
-
Packages that use AbstractNode Package Description com.puppycrawl.tools.checkstyle.xpath Contains the nodes implementations for XPATH queries and query generator. -
-
Uses of AbstractNode in com.puppycrawl.tools.checkstyle.xpath
Subclasses of AbstractNode in com.puppycrawl.tools.checkstyle.xpath Modifier and Type Class Description class
AttributeNode
Represents attribute of the element.class
ElementNode
Represents element node of Xpath-tree.class
RootNode
Represents root node of Xpath-tree.Methods in com.puppycrawl.tools.checkstyle.xpath that return types with arguments of type AbstractNode Modifier and Type Method Description protected java.util.List<AbstractNode>
AbstractNode. getChildren()
Getter method for children.Methods in com.puppycrawl.tools.checkstyle.xpath with parameters of type AbstractNode Modifier and Type Method Description protected void
AbstractNode. addChild(AbstractNode node)
Add new child node to children list.Constructors in com.puppycrawl.tools.checkstyle.xpath with parameters of type AbstractNode Constructor Description ElementNode(AbstractNode root, AbstractNode parent, DetailAST detailAst)
Creates a newElementNode
instance.
-