Package org.opentripplanner.routing.alertpatch

Examples of org.opentripplanner.routing.alertpatch.TranslatedString.addTranslation()


    private TranslatedString deBuffer(GtfsRealtime.TranslatedString input) {
        TranslatedString result = new TranslatedString();
        for (GtfsRealtime.TranslatedString.Translation translation : input.getTranslationList()) {
            String language = translation.getLanguage();
            String string = translation.getText();
            result.addTranslation(language, string);
        }
        return result;
    }

    public void setDefaultAgencyId(String defaultAgencyId) {
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.