KickJava   Java API By Example, From Geeks To Geeks.

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


1 /* $Id: TIRObject.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */
2 package SOFA.SOFAnode.Made.TIR;
3 import java.rmi.Remote JavaDoc;
4 import java.rmi.RemoteException JavaDoc;
5
6 /**
7     Interface <i>TIRObject</i> is the root of the interface hierarchy.
8     All interfaces of the objects in <b>TIR</b> extends this interface.
9 */

10 public interface TIRObject extends Remote JavaDoc {
11   /** Returns kind of the object. */
12   public DefinitionKind get_def_kind() throws RemoteException JavaDoc;
13   /** Return state of the object. */
14   public StateKind get_state() throws RemoteException JavaDoc;
15 }
16
17
Popular Tags