/* Copyright (C) 2000-2005 SKYRIX Software AG This file is part of SOPE. SOPE is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. SOPE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with SOPE; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "iCalTrigger.h" #include "common.h" @implementation iCalTrigger - (void)dealloc { [self->valueType release]; [self->value release]; [super dealloc]; } /* NSCopying */ - (id)copyWithZone:(NSZone *)_zone { iCalTrigger *new; new = [super copyWithZone:_zone]; new->valueType = [self->valueType copyWithZone:_zone]; new->value = [self->value copyWithZone:_zone]; return new; } /* accessors */ - (void)setValue:(NSString *)_value { ASSIGNCOPY(self->value, _value); } - (NSString *)value { return self->value; } - (void)setValueType:(NSString *)_value { ASSIGNCOPY(self->valueType, _value); } - (NSString *)valueType { return self->valueType; } /* descriptions */ - (NSString *)description { NSMutableString *ms; ms = [NSMutableString stringWithCapacity:128]; [ms appendFormat:@"<0x%p[%@]:", self, NSStringFromClass([self class])]; if (self->valueType) [ms appendFormat:@" type=%@", self->valueType]; if (self->value) [ms appendFormat:@" value=%@", self->value]; [ms appendString:@">"]; return ms; } @end /* iCalTrigger */