* @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()) {