Back to project page campus.
The source code is released under:
GNU General Public License
If you think the Android project campus 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 lecho.app.campus.utils; /*from www . j a v a 2s . c o m*/ import java.util.List; import lecho.app.campus.dao.Place; /** * Data holder for CampusMapActivity#PlacesLoader * * @author Lecho * */ public final class PlacesList { public PlacesList(int action, List<Place> places) { this.action = action; this.places = places; } public final int action; public final List<Place> places; }