import java.rmi.Remote;
import java.rmi.RemoteException;
public interface EUStats extends Remote {
String getMainLanguages(String CountryName)
throws RemoteException;
int getPopulation(String CountryName)
throws RemoteException;
String getCapitalName(String CountryName)
throws RemoteException;
}
import java.rmi.RemoteException;
public interface EUStats extends Remote {
String getMainLanguages(String CountryName)
throws RemoteException;
int getPopulation(String CountryName)
throws RemoteException;
String getCapitalName(String CountryName)
throws RemoteException;
}
No comments:
Post a Comment