View Javadoc

1   /*
2    * AnnounceInterface.java Created @ Aug 6, 2004
3    * 
4    * Copyright (c) 2003-2005 Delft University of Technology, Jaffalaan 5, 2628 BX
5    * Delft, the Netherlands. All rights reserved.
6    * 
7    * See for project information <a href="http://www.simulation.tudelft.nl/">
8    * www.simulation.tudelft.nl </a>.
9    * 
10   * The source code and binary code of this software is proprietary information
11   * of Delft University of Technology.
12   */
13  package org.gscg.common.interactionlayer;
14  
15  import nl.tudelft.simulation.event.EventType;
16  
17  /***
18   * The announce interface is implemented by objects which respond to announce
19   * events of a client side graphical user interface. Often the server side
20   * object will respond by sending data to the user interface.
21   * <p>
22   * Copyright (c) 2003-2005 Delft University of Technology, Jaffalaan 5, 2628 BX
23   * Delft, the Netherlands. All rights reserved.
24   * 
25   * See for project information <a href="http://www.simulation.tudelft.nl/">
26   * www.simulation.tudelft.nl </a>.
27   * 
28   * The source code and binary code of this software is proprietary information
29   * of Delft University of Technology.
30   * 
31   * @author <a
32   *         href="http://www.tbm.tudelft.nl/webstaf/stijnh/index.htm">Stijn-Pieter
33   *         van Houten </a>
34   * @version $Revision: 1.1 $ $Date: 2005/06/16 12:33:58 $
35   * @since 1.0.0
36   */
37  public interface AnnounceInterface
38  {
39  	/***
40  	 * 
41  	 * Method announce.
42  	 * 
43  	 * @param eventType the eventType
44  	 * @param announce indicates whether this is an announce
45  	 */
46  	void announce(EventType eventType, boolean announce);
47  }