00001
00002
00003
00004
00005
00006
00007
00008
00009 #import "GtdNote.h"
00010
00011
00012 @implementation GtdNote
00013
00014 @synthesize uid;
00015 @synthesize date_created;
00016 @synthesize date_modified;
00017 @synthesize title;
00018 @synthesize text;
00019 @synthesize private;
00020 @synthesize folder;
00021
00022 - (void) dealloc
00023 {
00024 [super dealloc];
00025 }
00026
00027 - (NSString *)description
00028 {
00029 return [NSString stringWithFormat:@"<GtdNote uid='%i' note='%@'>", uid, text];
00030 }
00031
00032
00033 @end