package nl.tudelft.simulation.event.remote; import java.rmi.Remote; import nl.tudelft.simulation.event.EventProducerInterface; /** * The RemoteEventProducerInterface provides a remote implementation of the EventProducerInterface. *
* (c) copyright 2002-2014 Delft University of Technology.
* BSD-style license. See DSOL License.
* @author Stijn-Pieter van Houten
* @author Alexander Verbraeck
*/
public interface RemoteEventProducerInterface extends Remote, EventProducerInterface
{
// nothing here
}