Back to project page Android-CalendarView.
The source code is released under:
Copyright (c) 2011 Jason Kostempski, http://www.jasonkostempski.com/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (...
If you think the Android project Android-CalendarView 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.jasonkostempski.android.calendar; /* www . ja v a 2s . c om*/ import java.util.Calendar; import java.util.Date; public class CalendarDayMarker { private int _year; private int _month; private int _day; private int _color; public CalendarDayMarker(int year, int month, int day, int color) { init(year, month, day, color); } public CalendarDayMarker(Date d, int color) { Calendar c = Calendar.getInstance(); c.setTime(d); init(c.get(Calendar.YEAR), c.get(Calendar.MONTH), c.get(Calendar.DAY_OF_MONTH), color); } public CalendarDayMarker(Calendar c, int color) { init(c.get(Calendar.YEAR), c.get(Calendar.MONTH), c.get(Calendar.DAY_OF_MONTH), color); } private void init(int year, int month, int day, int color) { _year = year; _month = month; _day = day; _color = color; } public void setYear(int year) { _year = year; } public int getYear() { return _year; } public void setMonth(int month) { _month = month; } public int getMonth() { return _month; } public void setDay(int day) { _day = day; } public int getDay() { return _day; } public void setColor(int color) { _color = color; } public int getColor() { return _color; } }