Uses of Package
jelan.elan.expression

Packages that use jelan.elan.expression
jelan.elan.expression   
jelan.elan.instruction   
 

Classes in jelan.elan.expression used by jelan.elan.expression
BinaryExpression
          The base class of any binary expression, e.g., a + b, a - b, or, in future use, a < b and so on.
Expression
          The base class of all arithmetic expressions, the evaluate method uses the hook/template method value to return a Double value, the template method returns a double.
UnaryExpression
           
Variable
          A variable stores a value and can be used in an expression.
VariableFactory
          Clients can use this class to obtain a unique variable per identifier (avoiding a proliferation of objects)
 

Classes in jelan.elan.expression used by jelan.elan.instruction
Expression
          The base class of all arithmetic expressions, the evaluate method uses the hook/template method value to return a Double value, the template method returns a double.
Variable
          A variable stores a value and can be used in an expression.