| RemoteIterator.java |
1 package common;
2
3 import java.rmi.Remote;
4 import java.rmi.RemoteException;
5
6 public interface RemoteIterator extends Remote {
7 public boolean hasNext() throws RemoteException;
8 public Object next() throws RemoteException;
9 public void remove() throws RemoteException;
10}
11