/core/externals/update-engine/externals/gdata-objectivec-client/Source/Clients/Contacts/GDataEntryContact.h

http://macfuse.googlecode.com/ · C++ Header · 48 lines · 16 code · 12 blank · 20 comment · 1 complexity · dab4d1d15f1cac0eafc2cb823095b9f9 MD5 · raw file

  1. /* Copyright (c) 2008 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. // GDataEntryContact.h
  17. //
  18. #if !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_CONTACTS_SERVICE
  19. #import "GDataEntryContactBase.h"
  20. #import "GDataGroupMembershipInfo.h"
  21. @interface GDataEntryContact : GDataEntryContactBase
  22. + (GDataEntryContact *)contactEntryWithName:(GDataName *)obj;
  23. + (GDataEntryContact *)contactEntryWithFullNameString:(NSString *)str;
  24. // contactEntryWithTitle is deprecated under version 3 of the contacts API
  25. // because the unstructured "title" field has become read-only
  26. + (GDataEntryContact *)contactEntryWithTitle:(NSString *)title;
  27. - (NSArray *)groupMembershipInfos;
  28. - (void)setGroupMembershipInfos:(NSArray *)arr;
  29. - (void)addGroupMembershipInfo:(GDataGroupMembershipInfo *)obj;
  30. - (void)removeGroupMembershipInfo:(GDataGroupMembershipInfo *)obj;
  31. - (GDataGroupMembershipInfo *)groupMembershipInfoWithHref:(NSString *)href;
  32. // phonetic name - version 3 only
  33. - (NSString *)yomi;
  34. - (void)setYomi:(NSString *)str;
  35. @end
  36. #endif // !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_CONTACTS_SERVICE