KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > Made > TIR > Contained


1 /* $Id: Contained.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 JavaDoc;
4
5 /** The base interface <i>Contained</i> is extended by all <b>TIR</b> objects that are
6     contained by <i>Container</i> objects.
7 */

8 public interface Contained extends TIRObject {
9   /** Returns identification of this <b>TIR</b> object. */
10   public Identification get_identification() throws RemoteException JavaDoc;
11   /** Add tag to the identification */
12   public void tag(String JavaDoc t) throws RemoteException JavaDoc, TIRExceptCreate, TIRExceptLock;
13
14   /** Identifies the <i>Container</i> within which this object is defined. */
15   public Container get_defined_in() throws RemoteException JavaDoc;
16   /* Absolute name (ScopeName) of this object. ----- moved to the Identification
17   public AbsoluteName get_absolute_name() throws RemoteException; */

18   /** Identifies containing repository (root of <b>TIR</b>). */
19   public Container get_containing_repository() throws RemoteException JavaDoc;
20 }
21
Popular Tags