1 /* $Id: StateKind.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 /** States of the <b>TIR</b> objects */7 public interface StateKind extends Remote {8 public static final int sk_normal = 0;9 public static final int sk_work = 1;10 public int value() throws RemoteException ;11 }12