use of com.intellij.cvsSupport2.cvsoperations.cvsTagOrBranch.ui.DeleteTagDialog in project intellij-community by JetBrains.
the class DeleteTagAction method getCvsHandler.
protected CvsHandler getCvsHandler(CvsContext context) {
final FilePath[] selectedFiles = context.getSelectedFilePaths();
final DeleteTagDialog deleteTagDialog = new DeleteTagDialog(selectedFiles, context.getProject());
if (!deleteTagDialog.showAndGet()) {
return CvsHandler.NULL;
}
return CommandCvsHandler.createRemoveTagAction(selectedFiles, deleteTagDialog.getTagName());
}
Aggregations