KickJava   Java API By Example, From Geeks To Geeks.

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


1 /* $Id: AttributeDef.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 /** Interface for <i>CDL interface</i> attributes. */
6 public interface AttributeDef extends Contained {
7   /** Type of the attribute. */
8   public CDLType type() throws RemoteException JavaDoc;
9   /** Mode of the attibute. */
10   public AttrMode mode() throws RemoteException JavaDoc;
11 }
12
Popular Tags