2 Copyright (C) 2000-2005 SKYRIX Software AG
4 This file is part of SOPE.
6 SOPE is free software; you can redistribute it and/or modify it under
7 the terms of the GNU Lesser General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
11 SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
14 License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with SOPE; see the file COPYING. If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
25 @implementation iCalToDo
28 [self->accessClass release];
29 [self->percentComplete release];
30 [self->completed release];
31 [self->sequence release];
33 [self->summary release];
34 [self->startDate release];
36 [self->priority release];
37 [self->recurrenceRule release];
43 - (void)setPercentComplete:(NSString *)_value {
44 ASSIGN(self->percentComplete, _value);
46 - (NSString *)percentComplete {
47 return self->percentComplete;
50 - (void)setDue:(NSCalendarDate *)_date {
51 ASSIGN(self->due, _date);
53 - (NSCalendarDate *)due {
57 - (void)setCompleted:(NSCalendarDate *)_date {
58 ASSIGN(self->completed, _date);
60 - (NSCalendarDate *)completed {
61 return self->completed;
64 - (void)setRecurrenceRule:(NSString *)_recurrenceRule {
65 ASSIGN(self->recurrenceRule, _recurrenceRule);
67 - (NSString *)recurrenceRule {
68 return self->recurrenceRule;
73 - (NSString *)entityName {
79 - (NSString *)description {
82 ms = [NSMutableString stringWithCapacity:128];
83 [ms appendFormat:@"<0x%08X[%@]:", self, NSStringFromClass([self class])];
85 if (self->uid) [ms appendFormat:@" uid=%@", self->uid];
86 if (self->startDate) [ms appendFormat:@" start=%@", self->startDate];
87 if (self->due) [ms appendFormat:@" due=%@", self->due];
88 if (self->priority) [ms appendFormat:@" pri=%@", self->priority];
91 [ms appendFormat:@" completed=%@", self->completed];
92 if (self->percentComplete)
93 [ms appendFormat:@" complete=%@", self->percentComplete];
94 if (self->accessClass)
95 [ms appendFormat:@" class=%@", self->accessClass];
98 [ms appendFormat:@" summary=%@", self->summary];
100 if (self->recurrenceRule)
101 [ms appendFormat:@" recurrenceRule=%@", self->recurrenceRule];
103 [ms appendString:@">"];