Package com.google.gdata.data.photos

Examples of com.google.gdata.data.photos.CommentEntry


    insertAlbum(album);
  }

  private void createComment(PhotoEntry photoEntry) throws Exception {
    CommentEntry comment = new CommentEntry();

    String gphotoId = photoEntry.getGphotoId();
    comment.setPhotoId(Long.parseLong(gphotoId));
    comment.setTitle(new PlainTextConstruct("Inserted Comment"));

    String commentStr = getString("Comment");
    comment.setContent(new PlainTextConstruct(commentStr));

    insert(photoEntry, comment);
  }
View Full Code Here

TOP

Related Classes of com.google.gdata.data.photos.CommentEntry

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.