Back to project page Calendar-DayView.
The source code is released under:
Apache License
If you think the Android project Calendar-DayView 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.srikanthgr.calendarweekview.model; //from w ww. j av a 2s. c o m /** * @author Srikanth G.R * */ public class Event { private String title; private String dtstart; private String dtend; private String _id; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDtstart() { return dtstart; } public void setDtstart(String dtstart) { this.dtstart = dtstart; } public String getDtend() { return dtend; } public void setDtend(String dtend) { this.dtend = dtend; } public String get_id() { return _id; } public void set_id(String _id) { this._id = _id; } }