Uses of Class
net.scheinerman.phoenix.interpreter.Condition

Packages that use Condition
net.scheinerman.phoenix.interpreter This package contains classes and packages for use in interpreting Phoenix programs. 
 

Uses of Condition in net.scheinerman.phoenix.interpreter
 

Fields in net.scheinerman.phoenix.interpreter with type parameters of type Condition
private  java.util.ArrayList<Condition> IfInterpreter.conditions
          The set of conditions making up this if / else / else if block.
 

Constructor parameters in net.scheinerman.phoenix.interpreter with type arguments of type Condition
IfInterpreter(java.lang.String file, java.util.ArrayList<Condition> conditions, Interpreter interpreter, java.util.LinkedList<java.util.HashMap<java.lang.String,Variable>> vat, java.util.LinkedList<java.util.HashMap<java.lang.String,Function>> fat)
          Creates a new IfInterpreter with a given file, a set of conditions, an interpreter to run the conditions, a VAT and a FAT.