1 /* $Id: BindDef.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 /** Interface for the binds. */ 6 public interface BindDef extends Contained { 7 /** Left hand side operand */ 8 public BindOperDef lhsop() throws RemoteException; 9 /** Right hand side operand */ 10 public BindOperDef rhsop() throws RemoteException; 11 /** Mode of the bind. */ 12 public BindMode mode() throws RemoteException; 13 /** Identifies used connector in the bind. 14 * Now only three connectors are available: CSProcCall (default), DataStream, EventPassing.*/ 15 public String using() throws RemoteException; 16 } 17