import java.rmi.*;

public interface IBuffer extends Remote {
    
    public void set(int x) throws RemoteException;    
    public int get() throws RemoteException;

}
