/**
* The remote interface for PersistentSet sets.
*/
package imaginary.persist;
import imaginary.util.RemoteObservable;
import java.rmi.RemoteException;
import java.util.Hashtable;
public interface RemotePersistentSet extends RemoteObservable {
public abstract RemotePersistent[] getPersistents()
throws RemoteException;
}
|