Examples of OffStreet


Examples of uk.org.naptan.StopClassificationStructure.OffStreet

  }

  private static String getTiplocForStopPoint(StopPointStructure stopPoint) {

    StopClassificationStructure classification = stopPoint.getStopClassification();
    OffStreet offstreet = classification.getOffStreet();
    if (offstreet == null) {
      return null;
    }
    Rail rail = offstreet.getRail();
    if (rail == null) {
      return null;
    }
    for (AnnotatedRailRefStructure ref : rail.getAnnotatedRailRef()) {
      if (ref.getTiplocRef() != null) {
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.