Package net.sourceforge.pmd.lang.xml.ast
Interface XmlNode
-
- All Superinterfaces:
net.sourceforge.pmd.lang.ast.impl.GenericNode<XmlNode>
,net.sourceforge.pmd.lang.ast.Node
,net.sourceforge.pmd.reporting.Reportable
public interface XmlNode extends net.sourceforge.pmd.lang.ast.impl.GenericNode<XmlNode>
This interface represents all XML AST nodes. They are essentially thin wrappers around the underlying DOM nodes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Node
getNode()
Provide access to the underlying DOM node.-
Methods inherited from interface net.sourceforge.pmd.lang.ast.impl.GenericNode
ancestors, ancestorsOrSelf, asStream, children, descendants, descendantsOrSelf, getChild, getFirstChild, getLastChild, getNextSibling, getParent, getPreviousSibling
-
Methods inherited from interface net.sourceforge.pmd.lang.ast.Node
acceptVisitor, ancestors, children, compareLocation, descendants, firstChild, getAstInfo, getBeginColumn, getBeginLine, getEndColumn, getEndLine, getImage, getIndexInParent, getLanguageVersion, getNumChildren, getReportLocation, getRoot, getTextDocument, getTextRegion, getUserMap, getXPathAttributesIterator, getXPathNodeName, hasImageEqualTo, isFindBoundary
-
-
-
-
Method Detail
-
getNode
Node getNode()
Provide access to the underlying DOM node.- Returns:
- The DOM node.
-
-