Package org.sonar.plugins.java.api.tree
Interface SyntaxToken
-
- All Superinterfaces:
Tree
- All Known Implementing Classes:
InternalSyntaxToken,ModifierKeywordTreeImpl
@Beta public interface SyntaxToken extends Tree
Represents a token in the syntax tree.- Since:
- plugin 2.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intcolumn()intline()Stringtext()List<SyntaxTrivia>trivias()
-
-
-
Method Detail
-
text
String text()
-
trivias
List<SyntaxTrivia> trivias()
-
line
int line()
-
column
int column()
-
-