Back to project page BT4Android-trunk.
The source code is released under:
Apache License
If you think the Android project BT4Android-trunk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.love.apps.BT4U.webservice; // ww w . j av a 2s.co m import java.util.ArrayList; /** * Defines the current route that a bus is taking. * * @author Hamilton Turner * */ public class Route { protected Route() {} /** A human-readable, non-standard name for the route such as 'University City via Progress' */ public String routeName; /** * The latitude/longitude of each route stop point. For each data item, * index 0 is latitude and index 1 is longitude */ public ArrayList<double[]> data; }