JAL-2960 raise the structure view after adding structures to it
[jalview.git] / src / jalview / api / structures / JalviewStructureDisplayI.java
index 9ba513a..abb23f8 100644 (file)
@@ -105,8 +105,24 @@ public interface JalviewStructureDisplayI
    */
   void updateTitleAndMenus();
 
+  /**
+   * Answers true if the viewer should attempt to align any added structures,
+   * else false
+   * 
+   * @return
+   */
   boolean isAlignAddedStructures();
 
+  /**
+   * Sets the flag for whether added structures should be aligned
+   * 
+   * @param alignAdded
+   */
   void setAlignAddedStructures(boolean alignAdded);
 
+  /**
+   * Raise the panel to the top of the stack...
+   */
+  void toFront();
+
 }