1 /* $Id: BindTypeArray.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 /** array type of the bind element */ 6 public interface BindTypeArray extends BindType { 7 /** name of the element */ 8 public String name() throws RemoteException; 9 /** lengths of the arrays */ 10 public ExprOperDef[] array_indexes() throws RemoteException; 11 } 12