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. *

* copyright (c) 2002-2018 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 }