- (NSString *)description;
Returns a string of the format: "YYYY-MM-DD HH:MM:SS: Summary text...". Calls descriptionWithFormat: with the format string "%Y-%m-%d %H:%M:%S: %%@".
- (NSString *)descriptionWithFormat:(NSString *)format;
Returns a string based on the format string. The format is first passed to [NSCalendarDate descriptionWithCalendarFormat:] to fill in date fields, then to [NSString stringWithFormat:] with the summary text as the argument. Therefore, you can use any of the escape codes from NSCalendarDate to include the date fields, but you must use %%@ (two percent signs) to include the summary text.
- (LJEntry *)getEntry;
- (NSString *)summary;
(Last Updated 2/17/2003)