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 w ww.j a v a 2 s .c o m*/ import java.util.List; import lecho.app.campus.dao.Place; /** * Just a data holder for PlaceDetailsFragmet#PlaceDetailsLoader * * @author Lecho * */ public final class PlaceDetails { public PlaceDetails(Place place, List<UnitsGroup> unitsGroups) { this.place = place; this.unitsGroups = unitsGroups; } public final Place place; public final List<UnitsGroup> unitsGroups; }