1 2 package SOFA.SOFAnode.Made.TIR; 3 import java.rmi.RemoteException ; 4 5 8 public interface Container extends TIRObject { 9 10 public Contained lookup(Identification id) throws RemoteException , TIRExceptLock; 11 12 public Contained lookup(String name, String version) throws RemoteException , TIRExceptLock; 13 14 public Contained[] lookup_name(Identification id) throws RemoteException , TIRExceptLock; 15 16 public Contained[] lookup_name(String name) throws RemoteException , TIRExceptLock; 17 18 public Contained[] contents(DefinitionKind type) throws RemoteException , TIRExceptLock; 19 20 21 public Contained lookup_tag(String name, String tag) throws RemoteException , TIRExceptLock; 22 24 public Contained[] lookup_branchtag(String name, String brtag) throws RemoteException , TIRExceptLock; 25 27 public Contained lookup_lastinbranch(String name, String brtag) throws RemoteException , TIRExceptLock; 28 30 public Contained lookup_lastfromversion(String name, String version) throws RemoteException , TIRExceptLock; 31 } 32 | Popular Tags |