1 /* $Id: AttrMode.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 ;4 import java.rmi.RemoteException ;5 6 /** Mode of the <i>CDL interface</i> attributes */7 public interface AttrMode extends Remote {8 /** Normal (read/write) attribute. */9 public static final int ATTR_NORMAL = 0;10 /** Readonly attribute. */11 public static final int ATTR_READONLY = 1;12 13 public int value() throws RemoteException ;14 }15