/core/externals/update-engine/externals/gdata-objectivec-client/Source/Clients/Calendar/GDataFeedEvent.m

http://macfuse.googlecode.com/ · Objective C · 62 lines · 30 code · 15 blank · 17 comment · 1 complexity · 7225b05f3258126beec80587c4d8c702 MD5 · raw file

  1. /* Copyright (c) 2007 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. // GDataFeedEvent.m
  17. //
  18. #if !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_CALENDAR_SERVICE
  19. #import "GDataEntryEvent.h"
  20. #import "GDataFeedEvent.h"
  21. #import "GDataWhere.h"
  22. @class GDataEntryEvent;
  23. @implementation GDataFeedEvent
  24. + (GDataFeedEvent *)eventFeedWithXMLData:(NSData *)data {
  25. return [self feedWithXMLData:data];
  26. }
  27. - (void)addExtensionDeclarations {
  28. [super addExtensionDeclarations];
  29. Class feedClass = [self class];
  30. [self addExtensionDeclarationForParentClass:feedClass
  31. childClass:[GDataWhere class]];
  32. }
  33. - (Class)classForEntries {
  34. return [GDataEntryEvent class];
  35. }
  36. #pragma mark -
  37. - (NSArray *)wheres {
  38. return [self objectsForExtensionClass:[GDataWhere class]];
  39. }
  40. - (void)setWheres:(NSArray *)array {
  41. [self setObjects:array forExtensionClass:[GDataWhere class]];
  42. }
  43. - (void)addWhere:(GDataWhere *)obj {
  44. [self addObject:obj forExtensionClass:[obj class]];
  45. }
  46. @end
  47. #endif // !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_CALENDAR_SERVICE