Back to project page android.
The source code is released under:
Apache License
If you think the Android project android 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.github.digin.android.constants; /*w w w. j a v a 2 s .co m*/ /** * Created by david on 8/14/14. */ public class LocationDataHolder { private Station[] stations; private String name; public LocationDataHolder(String s, Station... stations) { name = s; this.stations = stations; } public Station[] getStations() { return stations; } public String getName() { return name; } }