1 /* $Id: BindTypeNormal.java,v 1.2 2004/05/20 14:23:51 bures Exp $ */ 2 package SOFA.SOFAnode.Made.TIR; 3 import java.rmi.RemoteException; 4 5 /** normal type of the bind element */ 6 public interface BindTypeNormal extends BindType { 7 /** name of the element */ 8 public String name() throws RemoteException; 9 } 10