KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > Made > TIR > BindTypeArray


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