00001 // 00002 // GtdContext.m 00003 // ToodledoAPI 00004 // 00005 // Created by Alex Leutgöb on 09.11.09. 00006 // Copyright 2009 alexleutgoeb.com. All rights reserved. 00007 // 00008 00009 #import "GtdContext.h" 00010 00011 00012 @implementation GtdContext 00013 00014 @synthesize contextId; 00015 @synthesize title; 00016 00017 - (void) dealloc { 00018 [title release]; 00019 [super dealloc]; 00020 } 00021 00022 - (NSString *)description { 00023 return [NSString stringWithFormat:@"<GtdContext contextId='%i' title='%@'>", contextId, title]; 00024 } 00025 00026 @end