View Javadoc
1   package org.opentrafficsim.core.egtf;
2   
3   import java.util.EventListener;
4   
5   /**
6    * Interface for EGTF listeners.
7    * <p>
8    * Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
9    * BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
10   * <p>
11   * @version $Revision$, $LastChangedDate$, by $Author$, initial version 8 okt. 2018 <br>
12   * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
13   */
14  public interface EgtfListener extends EventListener
15  {
16  
17      /**
18       * Notifies progress.
19       * @param event EgtfEvent; event
20       */
21      void notifyProgress(EgtfEvent event);
22  
23  }