Package com.google.gdata.client.spreadsheet

Examples of com.google.gdata.client.spreadsheet.TableQuery


   * @throws IOException when an error occurs in communication with the Google
   *         Spreadsheets service.
   */
  public void search(String titleSearchString) throws IOException,
      ServiceException {
    TableQuery query = new TableQuery(tablesFeedUrl);
   
    query.setTitleQuery(titleSearchString);
    TableFeed feed = service.query(query, TableFeed.class);

    out.println("Results for [" + titleSearchString + "]");

    for (TableEntry entry : feed.getEntries()) {
View Full Code Here

TOP

Related Classes of com.google.gdata.client.spreadsheet.TableQuery

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.