ref #6913 Remove alignment editor
[taxeditor.git] / eu.etaxonomy.taxeditor.molecular / src / main / java / eu / etaxonomy / taxeditor / molecular / handler / AlignmentEditorCutHandler.java
diff --git a/eu.etaxonomy.taxeditor.molecular/src/main/java/eu/etaxonomy/taxeditor/molecular/handler/AlignmentEditorCutHandler.java b/eu.etaxonomy.taxeditor.molecular/src/main/java/eu/etaxonomy/taxeditor/molecular/handler/AlignmentEditorCutHandler.java
deleted file mode 100644 (file)
index 2236686..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-package eu.etaxonomy.taxeditor.molecular.handler;\r
-\r
-\r
-import info.bioinfweb.libralign.alignmentarea.AlignmentArea;\r
-\r
-import org.eclipse.core.commands.ExecutionEvent;\r
-\r
-import eu.etaxonomy.taxeditor.molecular.editor.AlignmentEditor;\r
-\r
-\r
-\r
-/**\r
- * Handler that cuts the currently selected nucleotides from an alignment editor to the clipboard.\r
- * <p>\r
- * The cut contents either come from the single reads or the consensus sequence alignment area,\r
- * depending on which component currently has the focus. If none of these components has the focus,\r
- * nothing will be cut, even if nucleotides are currently selected.\r
- * <p>\r
- * If the selection contains parts of multiple sequence, these are separated by the line separator\r
- * of the current operating system.  \r
- * \r
- * @author Ben Stöver\r
- * @date 25.08.2015\r
- */\r
-public class AlignmentEditorCutHandler extends AlignmentEditorCopyHandler {\r
-       @Override\r
-       protected void doExecute2(ExecutionEvent event, AlignmentEditor editor, AlignmentArea focusedArea) {\r
-               super.doExecute2(event, editor, focusedArea);  // Copy selected contents.\r
-               focusedArea.getActionProvider().deleteSelection();\r
-       }\r
-}\r