1 2 package SOFA.SOFAnode.Made.TIR; 3 import java.rmi.RemoteException ; 4 5 6 public interface BindOperSub extends BindOperDef { 7 8 BindType[] subs() throws RemoteException ; 9 10 BindType[] elements() throws RemoteException ; 11 12 13 public BindTypeNormal add_bindtypenormal(String name) throws RemoteException , TIRExceptCreate; 14 15 public BindTypeArray add_bindtypearray(String name, ExprOperDef[] indexes) throws RemoteException , TIRExceptCreate; 16 17 18 public BindTypeNormal add_subnormal(String name) throws RemoteException , TIRExceptCreate; 19 20 public BindTypeArray add_subarray(String name, ExprOperDef[] indexes) throws RemoteException , TIRExceptCreate; 21 } 22 | Popular Tags |