Examples of OneBusAwayConsequence


Examples of org.onebusaway.siri.OneBusAwayConsequence

        builder.setEffect(getConditionAsEffect(consequence.getCondition()));
      ExtensionsStructure extensions = consequence.getExtensions();
      if (extensions != null) {
        Object obj = extensions.getAny();
        if (obj instanceof OneBusAwayConsequence) {
          OneBusAwayConsequence obaConsequence = (OneBusAwayConsequence) obj;
          if (obaConsequence.getDiversionPath() != null)
            builder.setDetourPath(obaConsequence.getDiversionPath());
        }
      }
      if (builder.hasDetourPath() || builder.hasEffect())
        serviceAlert.addConsequence(builder);
    }
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.