Package com.google.gdata.data.extensions

Examples of com.google.gdata.data.extensions.Comments


   *                     If the service is unable to handle the request.
   * @throws IOException error sending request or reading the feed.
   */
  private static void printCommentsFeed(VideoEntry videoEntry)
      throws IOException, ServiceException {
    Comments comments = videoEntry.getComments();
    if (comments != null && comments.getFeedLink() != null) {
      System.out.println("\tComments:");
      printFeed(videoEntry.getService(), comments.getFeedLink().getHref(),
          "Comment");
    }
  }
View Full Code Here

TOP

Related Classes of com.google.gdata.data.extensions.Comments

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.