1 /* $Id: InstDef.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 instance of the subcomponent */6 public interface InstDef extends Contained {7 /** Subcomponet's frame */8 public CDLType type() throws RemoteException ;9 /** Mode of the inst */10 public InstMode mode() throws RemoteException ;11 }12