View Javadoc

1   /*
2    * @(#) RemoteEventProducerInterface.java Dec 5, 2003 Copyright (c) 2002-2005
3    * Delft University of Technology Jaffalaan 5, 2628 BX Delft, the Netherlands.
4    * All rights reserved. This software is proprietary information of Delft
5    * 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.EventProducerInterface;
13  
14  /***
15   * The RemoteEventProducerInterface provides a remote implementation of the
16   * EventProducerInterface.
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.5 $ $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  
33  public interface RemoteEventProducerInterface extends Remote,
34          EventProducerInterface
35  {
36      // nothing here
37  }