1 /* $Id: BindOperKind.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 /** Kinds of the bind operands */7 public interface BindOperKind extends Remote {8 /** Component's provisions/requirments */9 public static final int bok_provreq = 0;10 /** Subcomponent */11 public static final int bok_sub = 1;12 public int value() throws RemoteException ;13 }14