1 /* $Id: ExprOperDef.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 /** Superinterface for expressions. All expression interfaces extends this interface */6 public interface ExprOperDef extends TIRObject {7 /** Kind of expression object */8 public ExprOperKind get_eok_kind() throws RemoteException ;9 /** Try calculate expression */10 public ExprOperDef calculate() throws RemoteException , TIRExceptCalculate;11 }12