org.codehaus.jparsec.examples.java.ast.statement
Class ForStatement
java.lang.Object
org.codehaus.jparsec.examples.common.ValueObject
org.codehaus.jparsec.examples.java.ast.statement.ForStatement
- All Implemented Interfaces:
- Statement
public final class ForStatement
- extends ValueObject
- implements Statement
Represents the traditional for loop.
- Author:
- Ben Yu
initializer
public final Statement initializer
condition
public final Expression condition
incrementer
public final List<Expression> incrementer
statement
public final Statement statement
ForStatement
public ForStatement(Statement initializer,
Expression condition,
List<Expression> incrementer,
Statement statement)
toString
public String toString()
- Overrides:
toString in class ValueObject
Copyright © 2014. All rights reserved.