Java org.eclipse.jdt.core.dom ForStatement fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jdt.core.dom ForStatement fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jdt.core.dom ForStatement.

The text is from its open source code.

Field

ChildPropertyDescriptorBODY_PROPERTY
The "body" structural property of this node type (child type: Statement ).
ASTNode.NodeListinitializers
The list of initializer expressions (element type: Expression ).
ASTNode.NodeListupdaters
The list of update expressions (element type: Expression ).

Constructor

ForStatement(AST ast)
Creates a new AST node for a for statement owned by the given AST.

Method

StatementgetBody()
Returns the body of this for statement.
ExpressiongetExpression()
Returns the condition expression of this for statement, or null if there is none.
voidsetBody(Statement statement)
Sets the body of this for statement.
voidsetExpression(Expression expression)
Sets or clears the condition expression of this return statement.