Class NeqExpression

java.lang.Object
  |
  +--RETRAN
        |
        +--Expression
              |
              +--NeqExpression

public class NeqExpression
extends Expression

An expression that relates two operands under '<>'

Version:
1.0 Oct 2003
Author:
Paul Bailes, Ned Martin, modified 02-Nov-2003

Field Summary
private  Expression left
           
private  Expression right
           
 
Constructor Summary
NeqExpression(Expression l, Expression r)
          Constructs an NeqExpression.
 
Method Summary
 void JGen()
          Generates java source code for the not equal expression.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

left

private Expression left

right

private Expression right
Constructor Detail

NeqExpression

public NeqExpression(Expression l,
                     Expression r)
Constructs an NeqExpression.
Parameters:
l - the left operand
r - the right operand
Method Detail

JGen

public void JGen()
Generates java source code for the not equal expression.
Overrides:
JGen in class RETRAN