JAL-4409 Refactoring to allow easier reuse of classes with getdown
[jalview.git] / src / jalview / api / AlignViewControllerI.java
index 4d92d8e..25e4873 100644 (file)
@@ -111,6 +111,18 @@ public interface AlignViewControllerI
   boolean markHighlightedColumns(boolean invert, boolean extendCurrent,
           boolean toggle);
 
-  boolean justify_Region(boolean left);
+  /**
+   * copies each distinct highlighted region on the current view as a new
+   * sequence on the clipboard
+   * 
+   * @return
+   */
+  boolean copyHighlightedRegionsToClipboard();
 
+  /**
+   * Justify alignment or currently selected region left or right
+   * @param left - true - means justify left
+   * @return
+   */
+  boolean justify_Region(boolean left);
 }