Package com.gitblit.wicket.panels

Examples of com.gitblit.wicket.panels.CommentPanel


      // permit user to comment
      Fragment newComment = new Fragment("newComment", "newCommentFragment", this);
      GravatarImage img = new GravatarImage("newCommentAvatar", user.username, user.emailAddress,
          "gravatar-round", avatarWidth, true);
      newComment.add(img);
      CommentPanel commentPanel = new CommentPanel("commentPanel", user, ticket, null, TicketsPage.class);
      commentPanel.setRepository(repositoryName);
      newComment.add(commentPanel);
      add(newComment);
    }

View Full Code Here


      // permit user to comment
      Fragment newComment = new Fragment("newComment", "newCommentFragment", this);
      GravatarImage img = new GravatarImage("newCommentAvatar", user.username, user.emailAddress,
          "gravatar-round", avatarWidth, true);
      newComment.add(img);
      CommentPanel commentPanel = new CommentPanel("commentPanel", user, ticket, null, TicketsPage.class);
      commentPanel.setRepository(repositoryName);
      newComment.add(commentPanel);
      add(newComment);
    }

View Full Code Here

TOP

Related Classes of com.gitblit.wicket.panels.CommentPanel

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.