F G P S T

F

fromString(String) - Method in class PIMEntity
Each PIMEntity needs to be able to set all state information (fields) from a single text string.
fromString(String) - Method in class PIMNote
sets the priority and note text from a string.
fromString(String) - Method in class PIMTodo
sets the priority, date and description from a string.

G

getDate() - Method in interface PIMDateable
get the date associated with the PIM object.
getDate() - Method in class PIMTodo
 
getPriority() - Method in class PIMEntity
Accessor method for getting the priority string.

P

PIMDateable - interface PIMDateable.
 
PIMEntity - class PIMEntity.
PIMEntity is the abstract class for all items managed by the personal information manager.
PIMEntity() - Constructor for class PIMEntity
The default constructor sets the priority to "normal"
PIMEntity(String) - Constructor for class PIMEntity
alternate constructor that allows the priority to be set.
PIMNote - class PIMNote.
This class represents Notes in the PIM system.
PIMNote() - Constructor for class PIMNote
default constructor.
PIMNote(String) - Constructor for class PIMNote
constructor that allows the note description to be specified.
PIMNote(String, String) - Constructor for class PIMNote
constructor that allows the note and priority to be set
PIMTodo - class PIMTodo.
 
PIMTodo() - Constructor for class PIMTodo
default constructor.
PIMTodo(String, Date) - Constructor for class PIMTodo
constructor that allows the description and date to be specified.
PIMTodo(String, Date, String) - Constructor for class PIMTodo
constructor that allows the description, date and priority to be specified.

S

setDate(Date) - Method in interface PIMDateable
set the date to be associated with the PIM object.
setDate(Date) - Method in class PIMTodo
 
setDate(String) - Method in interface PIMDateable
set the date from a String in the format "mm/dd/yy"
setDate(String) - Method in class PIMTodo
 
setPriority(String) - Method in class PIMEntity
Sets the priority string

T

toString() - Method in class PIMEntity
This is actually already defined by the super class Object, but redefined here as abstract to make sure that derived classes actually implement it
toString() - Method in class PIMNote
generates a string representation of the Note item, including the priority and the text of the note.
toString() - Method in class PIMTodo
generates a string representation of the Todo item, including the priority, date and description of what needs to be done.

F G P S T