janino.net

org.codehaus.janino
Class Java.IfStatement

java.lang.Object
  extended by org.codehaus.janino.Java.Located
      extended by org.codehaus.janino.Java.Statement
          extended by org.codehaus.janino.Java.IfStatement
All Implemented Interfaces:
Java.BlockStatement, Java.Locatable, Java.Scope
Enclosing class:
Java

public static final class Java.IfStatement
extends Java.Statement

Representation of a JLS7 14.9 IF statement.


Field Summary
 Java.Rvalue condition
          The condition of the IF statement.
 Java.BlockStatement optionalElseStatement
          The optional ELSE statement, which is executed iff the condition evaluates to FALSE.
 Java.BlockStatement thenStatement
          The 'then statement', which is executed iff the condition evaluates to TRUE.
 
Fields inherited from class org.codehaus.janino.Java.Statement
localVariables
 
Fields inherited from class org.codehaus.janino.Java.Located
NOWHERE
 
Constructor Summary
Java.IfStatement(Location location, Java.Rvalue condition, Java.BlockStatement thenStatement, Java.BlockStatement optionalElseStatement)
          Notice that the elseStatement is mandatory; for an if statement without an "else" clause, a dummy Java.EmptyStatement should be passed.
 
Method Summary
 void accept(Visitor.BlockStatementVisitor visitor)
          Invokes the 'visit...()' method of Visitor.BlockStatementVisitor for the concrete Java.BlockStatement type.
 String toString()
           
 
Methods inherited from class org.codehaus.janino.Java.Statement
findLocalVariable, getEnclosingScope, setEnclosingScope
 
Methods inherited from class org.codehaus.janino.Java.Located
getLocation, throwCompileException
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.codehaus.janino.Java.Locatable
getLocation, throwCompileException
 

Field Detail

condition

public final Java.Rvalue condition
The condition of the IF statement.


thenStatement

public final Java.BlockStatement thenStatement
The 'then statement', which is executed iff the condition evaluates to TRUE.


optionalElseStatement

public final Java.BlockStatement optionalElseStatement
The optional ELSE statement, which is executed iff the condition evaluates to FALSE.

Constructor Detail

Java.IfStatement

public Java.IfStatement(Location location,
                        Java.Rvalue condition,
                        Java.BlockStatement thenStatement,
                        Java.BlockStatement optionalElseStatement)
Notice that the elseStatement is mandatory; for an if statement without an "else" clause, a dummy Java.EmptyStatement should be passed.

Method Detail

toString

public String toString()
Overrides:
toString in class Object

accept

public void accept(Visitor.BlockStatementVisitor visitor)
Description copied from interface: Java.BlockStatement
Invokes the 'visit...()' method of Visitor.BlockStatementVisitor for the concrete Java.BlockStatement type.


janino.net