Examples of TPOfflineNearbyStopsVertex


Examples of org.onebusaway.transit_data_federation.bundle.tasks.transfer_pattern.graph.TPOfflineNearbyStopsVertex

    StopEntry actual = actualOriginStops.get(state);
    if (actual == null) {
      Vertex v = state.getVertex();
      if (v instanceof TPOfflineNearbyStopsVertex) {
        TPOfflineNearbyStopsVertex nsv = (TPOfflineNearbyStopsVertex) v;
        actual = nsv.getStop();
      } else if (v instanceof TPOfflineOriginVertex) {
        TPOfflineOriginVertex originVertex = (TPOfflineOriginVertex) v;
        actual = originVertex.getStop();
      } else {
        actual = getActualOriginStop(state.getBackState(), actualOriginStops);
View Full Code Here

Examples of org.onebusaway.transit_data_federation.bundle.tasks.transfer_pattern.graph.TPOfflineNearbyStopsVertex

      return parent;

    Vertex v = state.getVertex();

    if (v instanceof TPOfflineNearbyStopsVertex) {
      TPOfflineNearbyStopsVertex nsv = (TPOfflineNearbyStopsVertex) v;
      return Arrays.asList(nsv.getStop());
    } else if (v instanceof TPOfflineOriginVertex) {
      TPOfflineOriginVertex originVertex = (TPOfflineOriginVertex) v;
      return Arrays.asList(originVertex.getStop());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.