1
2
3
4
5
6
7
8
9
10
11
12
13
14 package org.gscg.common.gui.statistics.components;
15
16
17 /***
18 * <p>
19 * Copyright (c) 2003-2005 Delft University of Technology, Jaffalaan 5, 2628 BX
20 * Delft, the Netherlands. All rights reserved.
21 *
22 * See for project information <a href="http://www.simulation.tudelft.nl/">
23 * www.simulation.tudelft.nl </a>.
24 *
25 * The source code and binary code of this software is proprietary information
26 * of Delft University of Technology.
27 *
28 * @author <a
29 * href="http://www.tbm.tudelft.nl/webstaf/stijnh/index.htm">Stijn-Pieter
30 * van Houten </a>
31 * @version $Revision: 1.1 $ $Date: 2005/06/16 12:33:54 $
32 * @since 1.0.0 <br>
33 */
34 public interface StatisticsInterface
35 {
36 /***
37 * Method setStatus sets the status of the statistic.
38 *
39 * @param status true if the statistics should be listening to server-side
40 * events; false otherwise
41 */
42 void setStatus(final boolean status);
43 }