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 TypeMethodDescriptionvoidaccept(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, setParentMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods 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:
continueKeywordin interfaceContinueStatementTree
-
label
- Specified by:
labelin interfaceContinueStatementTree
-
semicolonToken
- Specified by:
semicolonTokenin interfaceContinueStatementTree
-
accept
-
children
Description copied from class:JavaTreeCreates iterable for children of this node. Note that iterable may containnullelements.
-