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.EventListenerInterface;
16
17 /***
18 * The RemoteEventListenerInterface provides a remote implementation of the
19 * EventListenerInterface.
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 Mar 24, 2004 <br>
28 * @author <a
29 * href="http://www.tbm.tudelft.nl/webstaf/stijnh/index.htm">Stijn-Pieter
30 * van Houten </a>
31 */
32 public interface RemoteEventListenerInterface extends EventListenerInterface,
33 Remote
34 {
35
36 }