1 package com.sudogeeks.talking_reminder;
4 import lombok.EqualsAndHashCode;
5 import lombok.ToString;
17 private String mTitle;
20 private String mRepeat;
21 private String mRepeatNo;
22 private String mRepeatType;
23 private String mActive;
24 private String ownerID =
null;
25 private String receiverID =
null;
28 public ReminderDO(
int ID, String Title, String Date, String Time, String Repeat, String RepeatNo, String RepeatType, String Active) {
35 mRepeatType = RepeatType;
39 public ReminderDO(String Title, String Date, String Time, String Repeat, String RepeatNo, String RepeatType, String Active) {
45 mRepeatType = RepeatType;
52 public String getOwnerID() {
56 public void setOwnerID(String ownerID) {
57 this.ownerID = ownerID;
60 public String getReceiverID() {
64 public void setReceiverID(String receiverID) {
65 this.receiverID = receiverID;
72 public void setID(
int ID) {
76 public String getTitle() {
80 public void setTitle(String title) {
84 public String getDate() {
88 public void setDate(String date) {
92 public String getTime() {
96 public void setTime(String time) {
100 public String getRepeatType() {
104 public void setRepeatType(String repeatType) {
105 mRepeatType = repeatType;
108 public String getRepeatNo() {
112 public void setRepeatNo(String repeatNo) {
113 mRepeatNo = repeatNo;
116 public String getRepeat() {
120 public void setRepeat(String repeat) {
124 public String getActive() {
128 public void setActive(String active) {