cviceni9
Class BinaryExpr

java.lang.Object
  extended bycviceni9.BinaryExpr
All Implemented Interfaces:
Expr
Direct Known Subclasses:
PlusExpr

public abstract class BinaryExpr
extends java.lang.Object
implements Expr

Třída reprezentující abstraktní výraz s binárním operátorem.

Author:
M. Beneš, FEI VŠB-TU Ostrava

Field Summary
protected  Expr left
          Levý operand
protected  Expr right
          Pravý operand
 
Constructor Summary
BinaryExpr()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface cviceni9.Expr
eval
 

Field Detail

left

protected Expr left
Levý operand


right

protected Expr right
Pravý operand

Constructor Detail

BinaryExpr

public BinaryExpr()