1 package org.opentrafficsim.road.gtu.animation; 2 3 /** 4 * Interface for tactical planners that can report their blocking status. 5 * <p> 6 * Copyright (c) 2013-2018 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 7 * BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>. 8 * <p> 9 * @version $Revision$, $LastChangedDate$, by $Author$, initial version 7 sep. 2018 <br> 10 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a> 11 * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a> 12 * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a> 13 */ 14 public interface Blockable 15 { 16 17 18 /** 19 * Returns whether the GTU is blocking conflicts. 20 * @return boolean; whether the GTU is blocking conflicts 21 */ 22 boolean isBlocking(); 23 24 }