1 /* $Id: ArrayDef.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */2 package SOFA.SOFAnode.Made.TIR;3 import java.rmi.RemoteException ;4 5 /** Array type */6 public interface ArrayDef extends CDLType {7 /** Length of the array. */8 public ExprOperDef length() throws RemoteException ;9 /** Type of array's elements. */10 public CDLType element_type() throws RemoteException ;11 }12