8 lines
186 B
Java
8 lines
186 B
Java
import java.rmi.*;
|
|
import java.io.*;
|
|
|
|
public interface ObjetDeItf extends Remote {
|
|
public int getRandom() throws RemoteException;
|
|
public int getCalls() throws RemoteException;
|
|
}
|