/core/externals/update-engine/externals/gdata-objectivec-client/Source/Clients/Contacts/GDataContactJot.m

http://macfuse.googlecode.com/ · Objective C · 71 lines · 36 code · 18 blank · 17 comment · 1 complexity · c32170e75acfd69b37c868b14e2fa500 MD5 · raw file

  1. /* Copyright (c) 2009 Google Inc.
  2. *
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS,
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License.
  14. */
  15. //
  16. // GDataContactJot.m
  17. //
  18. #if !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_CONTACTS_SERVICE
  19. #define GDATACONTACTJOT_DEFINE_GLOBALS 1
  20. #import "GDataContactJot.h"
  21. #import "GDataContactConstants.h"
  22. static NSString* const kRelAttr = @"rel";
  23. @implementation GDataContactJot
  24. + (NSString *)extensionElementURI { return kGDataNamespaceContact; }
  25. + (NSString *)extensionElementPrefix { return kGDataNamespaceContactPrefix; }
  26. + (NSString *)extensionElementLocalName { return @"jot"; }
  27. + (id)jotWithRel:(NSString *)rel
  28. value:(NSString *)value {
  29. GDataContactJot *obj = [self object];
  30. [obj setRel:rel];
  31. [obj setStringValue:value];
  32. return obj;
  33. }
  34. - (void)addParseDeclarations {
  35. NSArray *attrs = [NSArray arrayWithObject:kRelAttr];
  36. [self addLocalAttributeDeclarations:attrs];
  37. [self addContentValueDeclaration];
  38. }
  39. #pragma mark -
  40. - (NSString *)rel {
  41. return [self stringValueForAttribute:kRelAttr];
  42. }
  43. - (void)setRel:(NSString *)str {
  44. [self setStringValue:str forAttribute:kRelAttr];
  45. }
  46. - (NSString *)stringValue {
  47. return [self contentStringValue];
  48. }
  49. - (void)setStringValue:(NSString *)str {
  50. [self setContentStringValue:str];
  51. }
  52. @end
  53. #endif // !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_CONTACTS_SERVICE