1 2 package SOFA.SOFAnode.Made.TIR; 3 import java.rmi.Remote ; 4 import java.rmi.RemoteException ; 5 6 7 public interface Identification extends Remote { 8 9 public boolean is_equal(Identification id) throws RemoteException ; 10 11 public boolean is_equal(String name, String version) throws RemoteException ; 12 13 public boolean is_name_equal(Identification id) throws RemoteException ; 14 15 public boolean is_name_equal(String name) throws RemoteException ; 16 17 18 public String name() throws RemoteException ; 19 20 public String version() throws RemoteException ; 21 22 public boolean is_local() throws RemoteException ; 23 24 public AbsoluteName absolute_name() throws RemoteException ; 25 26 public AbsoluteName lang_absolute_name() throws RemoteException ; 27 28 29 public String [] tag() throws RemoteException ; 30 31 public String branchTag() throws RemoteException ; 32 } 33 | Popular Tags |