Class LtExpression

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

public class LtExpression
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
LtExpression(Expression l, Expression r)
          Constructs an LtExpression.
 
Method Summary
 void JGen()
          Generates java source code for the less than 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

LtExpression

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

JGen

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