Package com.google.gdata.data.docs

Examples of com.google.gdata.data.docs.RevisionFeed


   * @throws DocumentListException
   */
  private void executeRevisions(String[] args) throws IOException,
      ServiceException, DocumentListException {
    if (args.length == 2) {
      RevisionFeed feed = documentList.getRevisionsFeed(args[1]);
      if (feed != null) {
        out.println("List of revisions...");
        for (RevisionEntry entry : feed.getEntries()) {
          printRevisionEntry(entry);
        }
      } else {
        printMessage(COMMAND_HELP_REVISIONS);
      }
View Full Code Here

TOP

Related Classes of com.google.gdata.data.docs.RevisionFeed

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.