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.EventListenerInterface;
13
14 /***
15 * The RemoteEventListenerInterface provides a remote implementation of the
16 * EventListenerInterface.
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.6 $ $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 public interface RemoteEventListenerInterface extends EventListenerInterface,
33 Remote
34 {
35
36 }