Package org.sonar.java.model.statement
Class ContinueStatementTreeImpl
java.lang.Object
org.sonar.java.model.JavaTree
org.sonar.java.model.statement.ContinueStatementTreeImpl
- All Implemented Interfaces:
ContinueStatementTree
,StatementTree
,Tree
-
Nested Class Summary
Nested classes/interfaces inherited from class org.sonar.java.model.JavaTree
JavaTree.AnnotatedTypeTree, JavaTree.ArrayTypeTreeImpl, JavaTree.CompilationUnitTreeImpl, JavaTree.ImportTreeImpl, JavaTree.NotImplementedTreeImpl, JavaTree.PackageDeclarationTreeImpl, JavaTree.ParameterizedTypeTreeImpl, JavaTree.PrimitiveTypeTreeImpl, JavaTree.UnionTypeTreeImpl, JavaTree.WildcardTreeImpl
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionContinueStatementTreeImpl
(InternalSyntaxToken continueKeyword, IdentifierTreeImpl label, InternalSyntaxToken semicolonToken) -
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(TreeVisitor visitor) children()
Creates iterable for children of this node.kind()
label()
Methods inherited from class org.sonar.java.model.JavaTree
firstToken, getChildren, getLine, is, isLeaf, lastToken, parent, setParent
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.sonar.plugins.java.api.tree.Tree
firstToken, is, lastToken, parent
-
Constructor Details
-
ContinueStatementTreeImpl
public ContinueStatementTreeImpl(InternalSyntaxToken continueKeyword, @Nullable IdentifierTreeImpl label, InternalSyntaxToken semicolonToken)
-
-
Method Details
-
kind
-
continueKeyword
- Specified by:
continueKeyword
in interfaceContinueStatementTree
-
label
- Specified by:
label
in interfaceContinueStatementTree
-
semicolonToken
- Specified by:
semicolonToken
in interfaceContinueStatementTree
-
accept
-
children
Description copied from class:JavaTree
Creates iterable for children of this node. Note that iterable may containnull
elements.
-