Package org.wicketstuff.facebook.plugins

Examples of org.wicketstuff.facebook.plugins.Comments


   *
   */
  public CommentEventPage()
  {
    add(new FacebookSdk("fb-root"));
    add(new Comments(
      "comments",
      Model.of("http://localhost:8080/wicket/bookmarkable/org.wicketstuff.facebook.plugins.CommentPage")));

    final Model<String> responseModel = new Model<String>();
    final Label responseLabel = new Label("response", responseModel);
View Full Code Here


   *
   */
  public RenderEventPage()
  {
    add(new FacebookSdk("fb-root"));
    add(new Comments(
      "comments",
      Model.of("http://localhost:8080/wicket/bookmarkable/org.wicketstuff.facebook.plugins.CommentPage")));

    add(new ActivityFeed("feed", Model.of("localhost")));
    add(new Facepile("facepile", Model.of("http://localhost/")));
View Full Code Here

TOP

Related Classes of org.wicketstuff.facebook.plugins.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.