Package net.sourceforge.pmd.lang.jsp.ast
Interface JspNode
-
- All Superinterfaces:
net.sourceforge.pmd.lang.ast.Node
- All Known Implementing Classes:
AbstractJspNode,ASTAttribute,ASTAttributeValue,ASTCData,ASTCommentTag,ASTCompilationUnit,ASTContent,ASTDeclaration,ASTDoctypeDeclaration,ASTDoctypeExternalId,ASTElement,ASTElExpression,ASTHtmlScript,ASTJspComment,ASTJspDeclaration,ASTJspDeclarations,ASTJspDirective,ASTJspDirectiveAttribute,ASTJspDocument,ASTJspExpression,ASTJspExpressionInAttribute,ASTJspScriptlet,ASTText,ASTUnparsedText,ASTValueBinding
public interface JspNode extends net.sourceforge.pmd.lang.ast.Node
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Iterable<? extends JspNode>children()ObjectchildrenAccept(JspParserVisitor visitor, Object data)Deprecated.This method is not useful, the logic for combining children values should be present on the visitor, not the nodeJspNodegetChild(int index)JspNodegetParent()ObjectjjtAccept(JspParserVisitor visitor, Object data)Accept the visitor-
Methods inherited from interface net.sourceforge.pmd.lang.ast.Node
findChildNodesWithXPath, findChildrenOfType, findDescendantsOfType, findDescendantsOfType, findDescendantsOfType, getAsDocument, getBeginColumn, getBeginLine, getDataFlowNode, getEndColumn, getEndLine, getFirstChildOfType, getFirstDescendantOfType, getFirstParentOfAnyType, getFirstParentOfType, getImage, getIndexInParent, getNthParent, getNumChildren, getParentsOfType, getUserData, getXPathAttributesIterator, getXPathNodeName, hasDescendantMatchingXPath, hasDescendantOfType, hasImageEqualTo, isFindBoundary, jjtAddChild, jjtClose, jjtGetChild, jjtGetChildIndex, jjtGetId, jjtGetNumChildren, jjtGetParent, jjtOpen, jjtSetChildIndex, jjtSetParent, remove, removeChildAtIndex, setDataFlowNode, setImage, setUserData
-
-
-
-
Method Detail
-
jjtAccept
Object jjtAccept(JspParserVisitor visitor, Object data)
Accept the visitor. *
-
childrenAccept
@Deprecated Object childrenAccept(JspParserVisitor visitor, Object data)
Deprecated.This method is not useful, the logic for combining children values should be present on the visitor, not the nodeAccept the visitor. *
-
getChild
JspNode getChild(int index)
- Specified by:
getChildin interfacenet.sourceforge.pmd.lang.ast.Node
-
getParent
JspNode getParent()
- Specified by:
getParentin interfacenet.sourceforge.pmd.lang.ast.Node
-
-