1
2
3
4
5
6
7
8 package nl.tudelft.simulation.event.remote;
9
10 import java.rmi.Remote;
11
12 import nl.tudelft.simulation.event.EventProducerInterface;
13
14 /***
15 * The RemoteEventProducerInterface provides a remote implementation of the
16 * EventProducerInterface.
17 * <p>
18 * (c) copyright 2002-2005 <a href="http://www.simulation.tudelft.nl">Delft
19 * University of Technology </a>, the Netherlands.
20 * <p>
21 * See for project information <a
22 * href="http://www.simulation.tudelft.nl/dsol/event">www.simulation.tudelft.nl/event
23 * </a> <br>
24 * License of use: <a href="http://www.gnu.org/copyleft/lesser.html">Lesser
25 * General Public License (LGPL) </a>, no warranty
26 *
27 * @version $Revision: 1.5 $ $Date: 2005/07/04 12:23:00 $
28 * @author <a
29 * href="mailto:stijnh@tbm.tudelft.nl">Stijn-Pieter
30 * van Houten </a>
31 */
32
33 public interface RemoteEventProducerInterface extends Remote,
34 EventProducerInterface
35 {
36
37 }