{
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);