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 w w . j a va 2 s. c om import java.util.List; import lecho.app.campus.dao.Faculty; import lecho.app.campus.dao.Unit; /** * Data holder for units sorted by faculty. * * @author Lecho * */ public final class UnitsGroup { public UnitsGroup(Faculty faculty, List<Unit> units) { this.units = units; this.faculty = faculty; } public final Faculty faculty; public final List<Unit> units; }