Package de.hpi.eworld.networkview.objects

Examples of de.hpi.eworld.networkview.objects.StreetBarrierView


      new CircleEventView(new CircleEventModel(CircleEventModel.Type.Ice, 1, null)),
      new PolygonEventView(new PolygonEventModel(PolygonEventModel.Type.Fog, 1, null)),
      new PolygonEventView(new PolygonEventModel(PolygonEventModel.Type.Rain, 1, null)),
      new PolygonEventView(new PolygonEventModel(PolygonEventModel.Type.Snow, 1, null)),
      new PolygonEventView(new PolygonEventModel(PolygonEventModel.Type.Ice, 1, null)),
      new StreetBarrierView(new RoadSpotModel(RoadSpotModel.Type.Busstop)),
      new StreetBarrierView(new RoadSpotModel(RoadSpotModel.Type.Liftgate)),
      new TrafficLightView(new TrafficLightModel(new NodeModel(0,0))));
    return (List<GraphicsView<EventModel>>) list;
  }
View Full Code Here


   */
  @Override
  protected List<GraphicsView<RoadSpotModel>> provideAnnotationItems() {
    final List<GraphicsView<RoadSpotModel>> annotationItems = new ArrayList<GraphicsView<RoadSpotModel>>();

    annotationItems.add(new StreetBarrierView(new SchoolModel()));
    annotationItems.add(new StreetBarrierView(new RoadSpotModel(
        Type.Busstop)));

    return annotationItems;
  }
View Full Code Here

TOP

Related Classes of de.hpi.eworld.networkview.objects.StreetBarrierView

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.