1
2
3
4
5
6
7
8
9
10
11 package nl.tudelft.simulation.event.remote;
12
13 import java.rmi.Remote;
14
15 import nl.tudelft.simulation.event.EventProducerInterface;
16
17 /***
18 * The RemoteEventProducerInterface provides a remote implementation of the
19 * EventProducerInterface.
20 * <p>
21 * See for project information <a href="http://www.simulation.tudelft.nl">
22 * www.simulation.tudelft.nl </a>
23 * <p>
24 * License of use: <a href="http://www.gnu.org/copyleft/gpl.html">General Public
25 * License (GPL) </a>, no warranty
26 *
27 * @version 1.0 Dec 5, 2003 <br>
28 * @author <a
29 * href="http://www.tbm.tudelft.nl/webstaf/stijnh/index.htm">Stijn-Pieter
30 * van Houten </a>
31 */
32
33 public interface RemoteEventProducerInterface extends Remote,
34 EventProducerInterface
35 {
36
37 }