1 2 package SOFA.SOFAnode.Made.TIR; 3 import java.rmi.RemoteException ; 4 5 6 public interface ArchitectureDef extends Contained, Container, CDLType { 7 8 public boolean is_system() throws RemoteException ; 9 10 11 public FrameDef frame() throws RemoteException ; 12 13 14 public InstDef create_inst(String name, CDLType type, int mode) throws RemoteException , TIRExceptCreate, TIRExceptLock; 15 16 public BindDef create_bind(BindOperDef lhs, BindOperDef rhs, int mode) throws RemoteException , TIRExceptCreate, TIRExceptLock; 17 18 public BindDef create_bind(BindOperDef lhs, BindOperDef rhs, int mode, String using) throws RemoteException , TIRExceptCreate, TIRExceptLock; 19 20 public PropertyDef create_property(String name, CDLType type) throws RemoteException , TIRExceptCreate, TIRExceptLock; 21 22 23 public BindOperProvReq create_bindoperprovreq() throws RemoteException , TIRExceptCreate; 24 25 public BindOperSub create_bindopersub() throws RemoteException , TIRExceptCreate; 26 } 27 | Popular Tags |