Back to project page logmypain.
The source code is released under:
GNU General Public License
If you think the Android project logmypain 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.logmypain.utils; //from w w w. j a v a2 s. co m import com.logmypain.utils.Models.HeadacheRecord; public class CalendarViewDay { private int day; private HeadacheRecord record; public CalendarViewDay(){ } public CalendarViewDay(int day){ this.setDay(day); } public CalendarViewDay(int day, HeadacheRecord record){ this.setDay(day); this.setRecord(record); } public int getDay() { return day; } public void setDay(int day) { this.day = day; } public HeadacheRecord getRecord() { return record; } public void setRecord(HeadacheRecord record) { this.record = record; } }