1 package org.opentrafficsim.animation.data;
2
3 import org.opentrafficsim.draw.road.LaneDetectorAnimation.LaneDetectorData;
4 import org.opentrafficsim.road.network.lane.object.detector.LaneDetector;
5
6
7
8
9
10
11
12
13
14 public class AnimationLaneDetectorData extends AnimationLaneBasedObjectData<LaneDetector> implements LaneDetectorData
15 {
16
17
18
19
20
21 public AnimationLaneDetectorData(final LaneDetector laneDetector)
22 {
23 super(laneDetector);
24 }
25
26 @Override
27 public String toString()
28 {
29 return "Lane detector " + getObject().getFullId();
30 }
31
32 }