Back to project page Joetz-Android-V2.
The source code is released under:
GNU General Public License
If you think the Android project Joetz-Android-V2 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.example.jens.myapplication.calendar; // ww w . j a va2 s. com /** * Created by Jens on 7/12/2014. */ public class KalenderItem { private long id; private String soort; private long date; private String title; private long endDate; public KalenderItem(long id, String soort, long date, long endDate, String title) { this.id = id; this.soort = soort; this.date = date; this.title = title; } public long getId() { return id; } public void setId(int id) { this.id = id; } public String getSoort() { return soort; } public void setSoort(String soort) { this.soort = soort; } public long getDate() { return date; } public void setDate(long date) { this.date = date; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public long getEndDate() { return endDate; } public void setEndDate(long endDate) { this.endDate = endDate; } }