+2007-02-12 Helge Hess <helge.hess@opengroupware.org>
+
+ * iCalRecurrenceCalculator.m: added -description (v4.7.78)
+
2006-11-14 Helge Hess <helge.hess@opengroupware.org>
* iCalRecurrenceRule.m: parse (but not process or store) 'bymonth'
/*
- Copyright (C) 2004-2005 SKYRIX Software AG
+ Copyright (C) 2004-2007 SKYRIX Software AG
+ Copyright (C) 2007 Helge Hess
This file is part of SOPE.
return nil;
}
+
+/* descriptions */
+
+- (NSString *)description {
+ NSMutableString *ms;
+
+ ms = [NSMutableString stringWithCapacity:128];
+ [ms appendFormat:@"<0x%p[%@]:", self, NSStringFromClass([self class])];
+
+ if (self->rrule != nil)
+ [ms appendFormat:@" rrule=%@", self->rrule];
+
+ if (self->firstRange != nil)
+ [ms appendFormat:@" range1=%@", self->firstRange];
+
+ [ms appendString:@">"];
+ return ms;
+}
+
@end /* iCalRecurrenceCalculator */