Merge branch 'Jalview-JS/develop' into merge_js_develop
[jalview.git] / src / jalview / appletgui / TitledPanel.java
index 1ae36f4..8c72f64 100644 (file)
@@ -1,9 +1,27 @@
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
+ * 
+ * This file is part of Jalview.
+ * 
+ * Jalview is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License 
+ * as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *  
+ * Jalview is distributed in the hope that it will be useful, but 
+ * WITHOUT ANY WARRANTY; without even the implied warranty 
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
+ * PURPOSE.  See the GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
+ */
 package jalview.appletgui;
 
-import java.awt.Frame;
 import java.awt.Graphics;
 import java.awt.Insets;
-import java.awt.Label;
 import java.awt.Panel;
 import java.awt.event.WindowAdapter;
 import java.awt.event.WindowEvent;
@@ -42,27 +60,6 @@ public class TitledPanel extends Panel
     g.drawString(getTitle(), 10, 10);
   }
 
-  public static void main(String[] args)
-  {
-    Frame f = new Frame("TitledPanel Tester");
-
-    TitledPanel p = new TitledPanel("Title of Panel");
-    p.add(new Label("Label 1"));
-    p.add(new Label("Label 2"));
-    p.add(new Label("Label 3"));
-    f.add(p);
-
-    f.addWindowListener(new WindowAdapter()
-    {
-      public void windowClosing(WindowEvent e)
-      {
-        System.exit(0);
-      }
-    });
-    f.setBounds(300, 300, 300, 300);
-    f.setVisible(true);
-  }
-
   public String getTitle()
   {
     return title;
@@ -72,4 +69,4 @@ public class TitledPanel extends Panel
   {
     this.title = title;
   }
-}
\ No newline at end of file
+}