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

http://macfuse.googlecode.com/ · Objective C · 59 lines · 27 code · 15 blank · 17 comment · 1 complexity · bfccd27941d4e69a0177c404f3f2c3a4 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. // GDataContactPriority.m
  17. //
  18. #if !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_CONTACTS_SERVICE
  19. #define GDATACONTACTPRIORITY_DEFINE_GLOBALS 1
  20. #import "GDataContactPriority.h"
  21. #import "GDataContactConstants.h"
  22. static NSString* const kRelAttr = @"rel";
  23. @implementation GDataContactPriority
  24. + (NSString *)extensionElementURI { return kGDataNamespaceContact; }
  25. + (NSString *)extensionElementPrefix { return kGDataNamespaceContactPrefix; }
  26. + (NSString *)extensionElementLocalName { return @"priority"; }
  27. + (id)priorityWithRel:(NSString *)rel {
  28. GDataContactPriority *obj = [self object];
  29. [obj setRel:rel];
  30. return obj;
  31. }
  32. - (void)addParseDeclarations {
  33. NSArray *attrs = [NSArray arrayWithObject:kRelAttr];
  34. [self addLocalAttributeDeclarations:attrs];
  35. }
  36. #pragma mark -
  37. - (NSString *)rel {
  38. return [self stringValueForAttribute:kRelAttr];
  39. }
  40. - (void)setRel:(NSString *)str {
  41. [self setStringValue:str forAttribute:kRelAttr];
  42. }
  43. @end
  44. #endif // !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_CONTACTS_SERVICE