View Javadoc

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