Package org.sonar.plugins.java.api.tree
Interface IdentifierTree
-
- All Superinterfaces:
ExpressionTree
,Tree
,TypeTree
- All Known Implementing Classes:
IdentifierTreeImpl
@Beta public interface IdentifierTree extends ExpressionTree, TypeTree
Identifier expression. JLS 6.5.6.1name()
- Since:
- Java 1.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SyntaxToken
identifierToken()
String
name()
Symbol
symbol()
-
Methods inherited from interface org.sonar.plugins.java.api.tree.ExpressionTree
asConstant, asConstant, symbolType
-
Methods inherited from interface org.sonar.plugins.java.api.tree.Tree
accept, firstToken, is, kind, lastToken, parent
-
Methods inherited from interface org.sonar.plugins.java.api.tree.TypeTree
annotations, symbolType
-
-
-
-
Method Detail
-
identifierToken
SyntaxToken identifierToken()
-
name
String name()
-
symbol
Symbol symbol()
-
-