package org.j3de.events;
import java.util.EventListener;
public interface J3deEvent {
public void dispatch(EventListener listener);
public Class getListenerInterface();
}
package org.j3de.events;
import java.rmi.RemoteException;
public class DistributedEventCorruptedException extends RemoteException {
public DistributedEventCorruptedException(Exception e) {
package org.j3de.events;
import java.awt.event.ActionEvent;
import java.rmi.RemoteException;
public class WaitForAction extends RemoteActionAdapter {
private long lastPerformed;