messageContent = ContentFactory.SERVICE.getInstance().createContent(lbMessage, RevuPlugin.PLUGIN_NAME, true);
}
private IssueBrowsingPane addReviewTab(@NotNull Review review)
{
ContentFactory contentFactory = ContentFactory.SERVICE.getInstance();
IssueBrowsingPane issueBrowsingPane = new IssueBrowsingPane(project, review);
Content content = contentFactory.createContent(issueBrowsingPane.getContentPane(), buildTableTitle(review), true);
content.putUserData(RevuKeys.ISSUE_BROWSING_PANE_KEY, issueBrowsingPane);
content.setCloseable(false);
toolwindow.getContentManager().addContent(content);
contentsByReviews.put(review, content);