Talking Reminder
this project is intenfed for people who are not tech savvy
ReminderDO.java
1 package com.sudogeeks.talking_reminder;
2 
3 import lombok.Data;
4 import lombok.EqualsAndHashCode;
5 import lombok.ToString;
6 
7 // ReminderDO class
8 //@Data
9 @Data
10 
15 public class ReminderDO {
16  private int mID;
17  private String mTitle;
18  private String mDate;
19  private String mTime;
20  private String mRepeat;
21  private String mRepeatNo;
22  private String mRepeatType;
23  private String mActive;
24  private String ownerID = null; //Email Id of the owner/creater of the reminder
25  private String receiverID = null; //Email Id of the receiver of the reminder;
26 
27 
28  public ReminderDO(int ID, String Title, String Date, String Time, String Repeat, String RepeatNo, String RepeatType, String Active) {
29  mID = ID;
30  mTitle = Title;
31  mDate = Date;
32  mTime = Time;
33  mRepeat = Repeat;
34  mRepeatNo = RepeatNo;
35  mRepeatType = RepeatType;
36  mActive = Active;
37  }
38 
39  public ReminderDO(String Title, String Date, String Time, String Repeat, String RepeatNo, String RepeatType, String Active) {
40  mTitle = Title;
41  mDate = Date;
42  mTime = Time;
43  mRepeat = Repeat;
44  mRepeatNo = RepeatNo;
45  mRepeatType = RepeatType;
46  mActive = Active;
47  }
48 
49  ReminderDO() {
50  }
51 
52  public String getOwnerID() {
53  return ownerID;
54  }
55 
56  public void setOwnerID(String ownerID) {
57  this.ownerID = ownerID;
58  }
59 
60  public String getReceiverID() {
61  return receiverID;
62  }
63 
64  public void setReceiverID(String receiverID) {
65  this.receiverID = receiverID;
66  }
67 
68  public int getID() {
69  return mID;
70  }
71 
72  public void setID(int ID) {
73  mID = ID;
74  }
75 
76  public String getTitle() {
77  return mTitle;
78  }
79 
80  public void setTitle(String title) {
81  mTitle = title;
82  }
83 
84  public String getDate() {
85  return mDate;
86  }
87 
88  public void setDate(String date) {
89  mDate = date;
90  }
91 
92  public String getTime() {
93  return mTime;
94  }
95 
96  public void setTime(String time) {
97  mTime = time;
98  }
99 
100  public String getRepeatType() {
101  return mRepeatType;
102  }
103 
104  public void setRepeatType(String repeatType) {
105  mRepeatType = repeatType;
106  }
107 
108  public String getRepeatNo() {
109  return mRepeatNo;
110  }
111 
112  public void setRepeatNo(String repeatNo) {
113  mRepeatNo = repeatNo;
114  }
115 
116  public String getRepeat() {
117  return mRepeat;
118  }
119 
120  public void setRepeat(String repeat) {
121  mRepeat = repeat;
122  }
123 
124  public String getActive() {
125  return mActive;
126  }
127 
128  public void setActive(String active) {
129  mActive = active;
130  }
131 }
com.sudogeeks.talking_reminder.ReminderDO
Data Object class for Reminder This class conatins all the attributes of reminder.
Definition: ReminderDO.java:15