JAL-1713 renamed method to OverviewPanel.get/setFrameBounds()
[jalview.git] / src / jalview / gui / OverviewPanel.java
index 9cfda3a..b84757a 100755 (executable)
@@ -459,26 +459,24 @@ public class OverviewPanel extends JPanel
   }
 
   /**
-   * Overridden to set the bounds of the frame holding the Overview panel
+   * Sets the bounds of the frame holding the Overview panel
    * 
    * @param xpos
    * @param ypos
    * @param width
    * @param height
    */
-  @Override
-  public void setBounds(int xpos, int ypos, int width, int height)
+  public void setFrameBounds(int xpos, int ypos, int width, int height)
   {
     internalFrame.setBounds(xpos, ypos, width, height);
   }
 
   /**
-   * Overridden to return the bounds of the enclosing frame
+   * Returns the bounds of the enclosing frame
    * 
    * @return
    */
-  @Override
-  public Rectangle getBounds()
+  public Rectangle getFrameBounds()
   {
     return internalFrame.getBounds();
   }