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