Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.rmicallback.client;
- import java.rmi.Remote;
- import java.rmi.RemoteException;
- public interface ClientInterface extends Remote{
- public void notifyMe() throws RemoteException;
- public void setN(int n) throws RemoteException;
- public int getN() throws RemoteException;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement