Android Open Source - Bussan Bus Stop Name Formatter






From Project

Back to project page Bussan.

License

The source code is released under:

Copyright 2011 Kristian Bendiksen. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: ...

If you think the Android project Bussan listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package no.kriben.bussan;
//w ww.  ja va  2 s.c o m
import android.content.Context;
import no.kriben.busstopstrondheim.model.BusStop;

public class BusStopNameFormatter {

    public static String format(Context context, BusStop busStop) {
        // Try to construct a direction string:
        //   buses with id smaller than 1000 are going to town
        //   less than equal 1000 is leaving town
        //   larger than 2000 is unknown
        String direction = "";
        int id = Integer.valueOf(busStop.getId());
        if (id < 2000) {
            if (id < 1000)
                direction = " (" + context.getString(R.string.from_town) + ")";
            else
                direction = " (" + context.getString(R.string.to_town) + ")";
        }
        return busStop.getName() + direction;
    }
}




Java Source Code List

no.kriben.bussan.AndroidFileStringCache.java
no.kriben.bussan.BusDepartureDetailActivity.java
no.kriben.bussan.BusStopAdapter.java
no.kriben.bussan.BusStopArrayAdapter.java
no.kriben.bussan.BusStopListActivity.java
no.kriben.bussan.BusStopMenuHandler.java
no.kriben.bussan.BusStopNameFormatter.java
no.kriben.bussan.BusStopWithDistance.java
no.kriben.bussan.BussanApplication.java
no.kriben.bussan.BussanAsyncTask.java
no.kriben.bussan.ConnectivityChecker.java
no.kriben.bussan.FindBusStopByDistanceActivity.java
no.kriben.bussan.FindBusStopByNameActivity.java
no.kriben.bussan.FrontpageActivity.java
no.kriben.bussan.PreferencesUtil.java
no.kriben.bussan.RealTimeActivity.java