1 package org.opentrafficsim.draw.road; 2 3 import org.opentrafficsim.base.geometry.OtsLocatable; 4 5 /** 6 * Tagging interface to toggle different types of detectors in animation. 7 * <p> 8 * Copyright (c) 2023-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 9 * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>. 10 * </p> 11 * @author <a href="https://github.com/wjschakel">Wouter Schakel</a> 12 */ 13 public interface DetectorData extends OtsLocatable 14 { 15 // 16 17 /** 18 * Tagging interface to toggle IDs of different types of detectors in animation. 19 * <p> 20 * Copyright (c) 2023-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. 21 * <br> 22 * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>. 23 * </p> 24 * @author <a href="https://github.com/wjschakel">Wouter Schakel</a> 25 */ 26 interface Text extends OtsLocatable 27 { 28 // 29 } 30 }