Class AbstractJavaNode
- java.lang.Object
-
- net.sourceforge.pmd.lang.ast.AbstractNode
-
- net.sourceforge.pmd.lang.ast.impl.javacc.AbstractJjtreeNode<JavaNode>
-
- net.sourceforge.pmd.lang.java.ast.AbstractJavaNode
-
- All Implemented Interfaces:
Node
,JavaNode
,ScopedNode
- Direct Known Subclasses:
AbstractJavaAccessNode
,AbstractJavaTypeNode
,ASTAnnotationTypeBody
,ASTAnnotationTypeMemberDeclaration
,ASTArgumentList
,ASTArguments
,ASTArrayDimsAndInits
,ASTArrayInitializer
,ASTAssertStatement
,ASTAssignmentOperator
,ASTBlock
,ASTBlockStatement
,ASTBreakStatement
,ASTCatchStatement
,ASTClassOrInterfaceBody
,ASTClassOrInterfaceBodyDeclaration
,ASTComponentPatternList
,ASTContinueStatement
,ASTDefaultValue
,ASTDoStatement
,ASTEmptyStatement
,ASTEnumBody
,ASTExplicitConstructorInvocation
,ASTExtendsList
,ASTFinallyStatement
,ASTForInit
,ASTFormalParameters
,ASTForStatement
,ASTForUpdate
,ASTGuardedPattern
,ASTIfStatement
,ASTImplementsList
,ASTInitializer
,ASTLabeledStatement
,ASTMemberSelector
,ASTMemberValue
,ASTMemberValueArrayInitializer
,ASTMemberValuePair
,ASTMemberValuePairs
,ASTMethodDeclarator
,ASTMethodReference
,ASTModuleDeclaration
,ASTModuleDirective
,ASTModuleName
,ASTNameList
,ASTPackageDeclaration
,ASTPermitsList
,ASTRecordBody
,ASTRecordComponent
,ASTRecordComponentList
,ASTRecordPattern
,ASTResources
,ASTResourceSpecification
,ASTResultType
,ASTReturnStatement
,ASTRSIGNEDSHIFT
,ASTRUNSIGNEDSHIFT
,ASTStatement
,ASTStatementExpressionList
,ASTSwitchGuard
,ASTSwitchLabel
,ASTSwitchLabeledBlock
,ASTSwitchLabeledExpression
,ASTSwitchLabeledThrowStatement
,ASTSwitchStatement
,ASTSynchronizedStatement
,ASTThrowStatement
,ASTTryStatement
,ASTTypeArguments
,ASTTypeParameters
,ASTTypePattern
,ASTVariableInitializer
,ASTWhileStatement
,DummyJavaNode
@Deprecated @InternalApi public abstract class AbstractJavaNode extends AbstractJjtreeNode<JavaNode> implements JavaNode
Deprecated.
-
-
Field Summary
Fields Modifier and Type Field Description protected JavaParser
parser
Deprecated.-
Fields inherited from class net.sourceforge.pmd.lang.ast.AbstractNode
beginColumn, beginLine, childIndex, children, endColumn, endLine, firstToken, id, lastToken, parent
-
-
Constructor Summary
Constructors Constructor Description AbstractJavaNode(int id)
Deprecated.AbstractJavaNode(JavaParser parser, int id)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Object
childrenAccept(JavaParserVisitor visitor, Object data)
Deprecated.Dispatches the given visitor to the children of this node.Comment
comment()
Deprecated.void
comment(Comment theComment)
Deprecated.ASTCompilationUnit
getRoot()
Deprecated.Scope
getScope()
Deprecated.String
getXPathNodeName()
Deprecated.Object
jjtAccept(JavaParserVisitor visitor, Object data)
Deprecated.Calls back the visitor's visit method corresponding to the runtime type of this Node.void
jjtClose()
Deprecated.void
jjtOpen()
Deprecated.void
setScope(Scope scope)
Deprecated.-
Methods inherited from class net.sourceforge.pmd.lang.ast.impl.javacc.AbstractJjtreeNode
children, getChild, getParent
-
Methods inherited from class net.sourceforge.pmd.lang.ast.AbstractNode
appendElement, findChildNodesWithXPath, findChildrenOfType, findDescendantsOfType, findDescendantsOfType, findDescendantsOfType, getAsDocument, getBeginColumn, getBeginLine, getDataFlowNode, getEndColumn, getEndLine, getFirstChildOfType, getFirstDescendantOfType, getFirstParentOfAnyType, getFirstParentOfType, getImage, getIndexInParent, getNthParent, getNumChildren, getParentsOfType, getUserData, getUserMap, getXPathAttributesIterator, hasDecendantOfAnyType, hasDescendantMatchingXPath, hasDescendantOfAnyType, hasDescendantOfType, hasImageEqualTo, isFindBoundary, isSingleLine, jjtAddChild, jjtGetChild, jjtGetChildIndex, jjtGetFirstToken, jjtGetId, jjtGetLastToken, jjtGetNumChildren, jjtGetParent, jjtSetChildIndex, jjtSetFirstToken, jjtSetLastToken, jjtSetParent, remove, removeChildAtIndex, setDataFlowNode, setImage, setUserData, testingOnlySetBeginColumn, testingOnlySetBeginLine, testingOnlySetEndColumn, testingOnlySetEndLine, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.sourceforge.pmd.lang.java.ast.JavaNode
children, getChild, getParent
-
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, getUserMap, getXPathAttributesIterator, hasDescendantMatchingXPath, hasDescendantOfType, hasImageEqualTo, isFindBoundary, jjtAddChild, jjtGetChild, jjtGetChildIndex, jjtGetId, jjtGetNumChildren, jjtGetParent, jjtSetChildIndex, jjtSetParent, remove, removeChildAtIndex, setDataFlowNode, setImage, setUserData
-
-
-
-
Field Detail
-
parser
protected JavaParser parser
Deprecated.
-
-
Constructor Detail
-
AbstractJavaNode
@InternalApi @Deprecated public AbstractJavaNode(int id)
Deprecated.
-
AbstractJavaNode
@InternalApi @Deprecated public AbstractJavaNode(JavaParser parser, int id)
Deprecated.
-
-
Method Detail
-
jjtOpen
public void jjtOpen()
Deprecated.- Specified by:
jjtOpen
in interfaceNode
- Overrides:
jjtOpen
in classAbstractNode
-
jjtClose
public void jjtClose()
Deprecated.- Specified by:
jjtClose
in interfaceNode
- Overrides:
jjtClose
in classAbstractNode
-
jjtAccept
public Object jjtAccept(JavaParserVisitor visitor, Object data)
Deprecated.Description copied from interface:JavaNode
Calls back the visitor's visit method corresponding to the runtime type of this Node.
-
childrenAccept
public Object childrenAccept(JavaParserVisitor visitor, Object data)
Deprecated.Description copied from interface:JavaNode
Dispatches the given visitor to the children of this node. This is the default implementation ofJavaParserVisitor.visit(JavaNode, Object)
, to which all other default implementations for visit methods delegate. Unless visit methods are overridden without callingsuper.visit
, the visitor performs a depth-first tree walk.The return value of the visit methods called on children are ignored.
- Specified by:
childrenAccept
in interfaceJavaNode
- Parameters:
visitor
- Visitor to dispatchdata
- Visit data
-
getRoot
public ASTCompilationUnit getRoot()
Deprecated.
-
getScope
public Scope getScope()
Deprecated.- Specified by:
getScope
in interfaceScopedNode
-
setScope
@InternalApi @Deprecated public void setScope(Scope scope)
Deprecated.
-
comment
@InternalApi @Deprecated public void comment(Comment theComment)
Deprecated.
-
comment
public Comment comment()
Deprecated.
-
getXPathNodeName
public final String getXPathNodeName()
Deprecated.- Specified by:
getXPathNodeName
in interfaceNode
- Overrides:
getXPathNodeName
in classAbstractNode
-
-