1 /* $Id: ExprBinOperationDef.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */2 package SOFA.SOFAnode.Made.TIR;3 import java.rmi.RemoteException ;4 5 /** Binary operation for expressions. */6 public interface ExprBinOperationDef extends ExprOperDef {7 /** Left operand */8 public ExprOperDef operand1() throws RemoteException ;9 /** Right operand */10 public ExprOperDef operand2() throws RemoteException ;11 }12