Class DoWhileStatementTreeImpl
java.lang.Object
org.sonar.php.tree.impl.PHPTree
org.sonar.php.tree.impl.statement.DoWhileStatementTreeImpl
- All Implemented Interfaces:
DoWhileStatementTree
,StatementTree
,Tree
-
Nested Class Summary
-
Constructor Summary
ConstructorsConstructorDescriptionDoWhileStatementTreeImpl
(InternalSyntaxToken doToken, StatementTree statement, InternalSyntaxToken whileToken, ParenthesisedExpressionTree condition, InternalSyntaxToken eosToken) -
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(VisitorCheck visitor) Creates iterator for children of this node.doToken()
eosToken()
getKind()
Methods inherited from class org.sonar.php.tree.impl.PHPTree
getFirstToken, getLastToken, getLine, getParent, is, isLeaf, setParent, toString
-
Constructor Details
-
DoWhileStatementTreeImpl
public DoWhileStatementTreeImpl(InternalSyntaxToken doToken, StatementTree statement, InternalSyntaxToken whileToken, ParenthesisedExpressionTree condition, InternalSyntaxToken eosToken)
-
-
Method Details
-
doToken
- Specified by:
doToken
in interfaceDoWhileStatementTree
-
statement
- Specified by:
statement
in interfaceDoWhileStatementTree
-
whileToken
- Specified by:
whileToken
in interfaceDoWhileStatementTree
-
condition
- Specified by:
condition
in interfaceDoWhileStatementTree
-
eosToken
- Specified by:
eosToken
in interfaceDoWhileStatementTree
-
getKind
-
childrenIterator
Description copied from class:PHPTree
Creates iterator for children of this node. Note that iterator may containnull
elements.- Specified by:
childrenIterator
in classPHPTree
-
accept
-