Back to project page ProjectStudio.
The source code is released under:
Apache License
If you think the Android project ProjectStudio 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 model; /* w ww . ja v a2 s. c o m*/ import java.util.Date; /** * Created by desmond on 1/22/14. */ public class Task { private Long id; private String title; private String note; private String location; private String day; private Date time; private Professor professor; public Task() { } public Long getId() { return id; } public Date getTime() { return time; } public Professor getProfessor() { return professor; } public String getDay() { return day; } public void setDay(String day) { this.day = day; } public void setTime(Date time) { this.time = time; } public void setProfessor(Professor professor) { this.professor = professor; } public void setId(long id) { this.id = id; } public String getTitle() { return title; } public String getNote() { return note; } public String getLocation() { return location; } public void setId(Long id) { this.id = id; } public void setTitle(String title) { this.title = title; } public void setNote(String note) { this.note = note; } public void setLocation(String location) { this.location = location; } }