| java.lang.Object de.uka.ilkd.key.java.JavaSourceElement de.uka.ilkd.key.java.JavaProgramElement de.uka.ilkd.key.java.JavaNonTerminalProgramElement de.uka.ilkd.key.java.statement.JavaStatement de.uka.ilkd.key.java.statement.LoopStatement de.uka.ilkd.key.java.statement.For
Constructor Summary | |
public | For() For. | public | For(LoopInitializer[] inits, Expression guard, Expression[] updates, Statement body) For. | public | For(ILoopInit inits, IGuard guard, IForUpdates updates, Statement body, ExtList comments) | public | For(ILoopInit inits, IGuard guard, IForUpdates updates, Statement body, ExtList comments, PositionInfo pos) | public | For(ILoopInit inits, IGuard guard, IForUpdates updates, Statement body) | public | For(ExtList children) |
For | public For(LoopInitializer[] inits, Expression guard, Expression[] updates, Statement body)(Code) | | For. Used for the Recoder2KeY transformation
Parameters: inits - a loop initializer mutable list. Parameters: guard - an expression. Parameters: updates - an expression mutable list. Parameters: body - a statement. |
getVariablesInScope | public ArrayOfVariableSpecification getVariablesInScope()(Code) | | |
isCheckedBeforeIteration | public boolean isCheckedBeforeIteration()(Code) | | Is checked before iteration.
the boolean value. |
isDefinedScope | public boolean isDefinedScope()(Code) | | |
isExitCondition | public boolean isExitCondition()(Code) | | Is exit condition.
the boolean value. |
visit | public void visit(Visitor v)(Code) | | calls the corresponding method of a visitor in order to
perform some action/transformation on this element
Parameters: v - the Visitor |
|
|