1 2 package SOFA.SOFAnode.Made.TIR; 3 import java.rmi.RemoteException ; 4 5 6 public interface FrameDef extends Contained, Container, CDLType { 7 8 public boolean is_system() throws RemoteException ; 9 10 11 public ProtocolDef protocol() throws RemoteException ; 12 13 14 public RequireDef create_require(String name, CDLType type) throws RemoteException , TIRExceptCreate, TIRExceptLock; 15 16 public ProvideDef create_provide(String name, CDLType type) throws RemoteException , TIRExceptCreate, TIRExceptLock; 17 18 public PropertyDef create_property(String name, CDLType type) throws RemoteException , TIRExceptCreate, TIRExceptLock; 19 20 public ProtocolDef create_protocol() throws RemoteException , TIRExceptCreate, TIRExceptLock; 21 } 22 | Popular Tags |