/core/externals/update-engine/externals/gdata-objectivec-client/Source/Clients/Spreadsheets/GDataQuerySpreadsheet.h

http://macfuse.googlecode.com/ · C++ Header · 65 lines · 26 code · 18 blank · 21 comment · 1 complexity · f57d1e6598fed9890582fe2a2f8195a5 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. // GDataQuerySpreadsheet.h
  17. //
  18. #if !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_SPREADSHEET_SERVICE
  19. #import "GDataQuery.h"
  20. @interface GDataQuerySpreadsheet : GDataQuery
  21. + (GDataQuerySpreadsheet *)spreadsheetQueryWithFeedURL:(NSURL *)feedURL;
  22. // list feed parameters
  23. // Note: for list feed, setOrderBy: parameter
  24. // can be "position" or "column:column_name"
  25. - (void)setSpreadsheetQuery:(NSString *)queryStr;
  26. - (NSString *)spreadsheetQuery; // sq query
  27. - (void)setIsReverseSort:(BOOL)isReverse;
  28. - (BOOL)isReverseSort;
  29. - (NSString *)titleQuery;
  30. - (void)setTitleQuery:(NSString *)str;
  31. - (BOOL)isTitleQueryExact;
  32. - (void)setIsTitleQueryExact:(BOOL)flag;
  33. // cell feed parameters
  34. - (void)setMinimumRow:(NSInteger)val;
  35. - (NSInteger)minimumRow;
  36. - (void)setMaximumRow:(NSInteger)val;
  37. - (NSInteger)maximumRow;
  38. - (void)setMaximumColumn:(NSInteger)val;
  39. - (NSInteger)maximumColumn;
  40. - (void)setMinimumColumn:(NSInteger)val;
  41. - (NSInteger)minimumColumn;
  42. - (void)setRange:(NSString *)str;
  43. - (NSString *)range;
  44. - (void)setShouldReturnEmpty:(BOOL)flag;
  45. - (BOOL)shouldReturnEmpty;
  46. @end
  47. #endif // !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_SPREADSHEET_SERVICE