Methods Summary |
---|
PIMFormat | getEncodingFormat()Gets the encoding format.
return new VCalendar10Format();
|
protected int | getRevisionField()Gets the revision field identifier.
return REVISION;
|
protected int | getUIDField()Gets the UID field identifier.
return UID;
|
static boolean | isValidPIMField(int field)Checks if field is supported.
switch (field) {
case ToDo.CLASS:
case ToDo.COMPLETED:
case ToDo.COMPLETION_DATE:
case ToDo.DUE:
case ToDo.NOTE:
case ToDo.PRIORITY:
case ToDo.REVISION:
case ToDo.SUMMARY:
case ToDo.UID:
return true;
default:
return false;
}
|
protected java.lang.String | toDisplayableString()Converts the ToDo record to a printable format.
return "ToDo[" + formatData() + "]";
|