View Javadoc

1   /*
2    * RemoteEventListenerInterface.java Created @ Mar 24, 2004
3    * 
4    * Copyright (c) 2003 Delft University of Technology Jaffalaan 5, 2628 BX Delft,
5    * the Netherlands All rights reserved.
6    * 
7    * This software is proprietary information of Delft University of Technology
8    * The code is published under the General Public License
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  	//nothing here
36  }