1 /* $Id: BindTypeKind.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 types of the bind elements */ 7 public interface BindTypeKind extends Remote { 8 /** normal type */ 9 public static final int btk_normal = 0; 10 /** array type */ 11 public static final int btk_array = 1; 12 public int value() throws RemoteException; 13 } 14