View Javadoc
1   package org.opentrafficsim.water.network.infra;
2   
3   import org.opentrafficsim.water.Dynamic;
4   import org.opentrafficsim.water.Operated;
5   
6   /**
7    * <br>
8    * Copyright (c) 2013 Rijkswaterstaat - Dienst Water, Verkeer en Leefomgeving. All rights reserved. <br>
9    * Some parts of the software (c) 2011-2013 TU Delft, Faculty of TBM, Systems and Simulation <br>
10   * This software is licensed without restrictions to Nederlandse Organisatie voor Toegepast Natuurwetenschappelijk
11   * Onderzoek TNO (TNO), Erasmus University Rotterdam, Delft University of Technology, Panteia B.V., Stichting Projecten
12   * Binnenvaart, Ab Ovo Nederland B.V., Modality Software Solutions B.V., and Rijkswaterstaat - Dienst Water, Verkeer en
13   * Leefomgeving, including the right to sub-license sources and derived products to third parties. <br>
14   * 
15   * @version Sep 29, 2012 <br>
16   * @author <a href="http://tudelft.nl/averbraeck">Alexander Verbraeck </a>
17   */
18  public interface OperatedObstacle extends Operated, Dynamic
19  {
20      // nothing extra
21  }