Package org.sylfra.idea.plugins.revu.ui.forms.review

Examples of org.sylfra.idea.plugins.revu.ui.forms.review.CreateReviewDialog


  {
    Project project = e.getData(PlatformDataKeys.PROJECT);

    Collection<Review> reviews = getExistingReviews(e);

    final CreateReviewDialog dialog = new CreateReviewDialog(project, true);
    dialog.show(reviews, null);
    if (!dialog.isOK())
    {
      return;
    }

    final RevuProjectSettingsForm form = project.getComponent(RevuProjectSettingsForm.class);
View Full Code Here


  {
    Project project = e.getData(DataKeys.PROJECT);

    Collection<Review> reviews = getExistingReviews(e);

    final CreateReviewDialog dialog = new CreateReviewDialog(project, true);
    dialog.show(reviews, null);
    if (!dialog.isOK())
    {
      return;
    }

    final RevuProjectSettingsForm form = project.getComponent(RevuProjectSettingsForm.class);
View Full Code Here

TOP

Related Classes of org.sylfra.idea.plugins.revu.ui.forms.review.CreateReviewDialog

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.