Back to project page ho.la.urv.
The source code is released under:
MIT License
If you think the Android project ho.la.urv 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 eu.robertboloc.holaurv.models; // w ww. j a v a2s . c o m public class Week { final Day[] days = new Day[7]; public void setDay(int dayOfWeek, Day day) { days[dayOfWeek] = day; } public Day getDay(int dayOfWeek) { return days[dayOfWeek]; } }