elan.expression
Class Notequal

java.lang.Object
  |
  +--elan.GrammarElement
        |
        +--elan.expression.Expression
              |
              +--elan.expression.BinaryExpression
                    |
                    +--elan.expression.Notequal

public class Notequal
extends BinaryExpression

Returns true if a is not equal to b, false otherwise


Fields inherited from class elan.expression.BinaryExpression
myLeft, myRight, mySymbol
 
Fields inherited from class elan.GrammarElement
functionMap, ourMap
 
Constructor Summary
Notequal(Expression lhs, Expression rhs)
           
 
Method Summary
 double value(Context c)
           
 
Methods inherited from class elan.expression.BinaryExpression
leftValue, rightValue, toString
 
Methods inherited from class elan.expression.Expression
evaluate
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Notequal

public Notequal(Expression lhs,
                Expression rhs)
Method Detail

value

public double value(Context c)
Overrides:
value in class Expression