1 2 package SOFA.SOFAnode.Made.TIR; 3 import java.rmi.RemoteException ; 4 5 6 public interface OperationDef extends Contained { 7 8 public CDLType result() throws RemoteException ; 9 10 public ParamDescr[] params() throws RemoteException , TIRExceptLock; 11 12 public ExceptionDef[] exceptions() throws RemoteException ; 13 14 15 public ParamDescr create_parametr(String name, CDLType type, int paramMode) throws RemoteException , TIRExceptCreate, TIRExceptLock; 16 } 17 | Popular Tags |