Methods Summary |
---|
public byte | getMethod()Returns the method of the reminder.
return method;
|
public int | getMinutes()Gets how many minutes before an event that the reminder should be
triggered.
return minutes;
|
public void | setMethod(byte method)Sets the method of the reminder.
this.method = method;
|
public void | setMinutes(int minutes)Sets how many minutes before an event that the reminder should be
triggered.
this.minutes = minutes;
|
public void | toString(java.lang.StringBuffer sb)
sb.append("REMINDER MINUTES: " + minutes);
sb.append("\n");
sb.append("REMINDER METHOD: " + method);
sb.append("\n");
|
public java.lang.String | toString()
StringBuffer sb = new StringBuffer();
toString(sb);
return sb.toString();
|