/core/externals/update-engine/externals/gdata-objectivec-client/Source/Clients/WebmasterTools/GDataEntrySiteCrawlIssue.h

http://macfuse.googlecode.com/ · C++ Header · 51 lines · 19 code · 14 blank · 18 comment · 1 complexity · 2a86a68c1e0305cf5e328164eede5f7f 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. // GDataEntrySiteCrawlIssue.h
  17. //
  18. #if !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_WEBMASTERTOOLS_SERVICE
  19. #import "GDataEntryBase.h"
  20. @interface GDataEntrySiteCrawlIssue : GDataEntryBase
  21. + (id)crawlIssueEntry;
  22. // extensions
  23. - (NSString *)crawlType;
  24. - (void)setCrawlType:(NSString *)str;
  25. - (GDataDateTime *)detectedDate;
  26. - (void)setDetectedDate:(GDataDateTime *)dateTime;
  27. - (NSString *)detail;
  28. - (void)setDetail:(NSString *)str;
  29. - (NSString *)issueType;
  30. - (void)setIssueType:(NSString *)str;
  31. - (NSString *)issueURLString;
  32. - (void)setIssueURLString:(NSString *)str;
  33. - (NSArray *)issueLinkedFromURLStrings;
  34. - (void)setIssueLinkedFromURLStrings:(NSArray *)array;
  35. - (void)addIssueLinkedFromURLString:(NSString *)str;
  36. @end
  37. #endif // !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_WEBMASTERTOOLS_SERVICE