JAL-3438 spotless for 2.11.2.0
[jalview.git] / test / jalview / gui / MouseEventDemo.java
index aeed2c6..f02527a 100644 (file)
@@ -1,3 +1,23 @@
+/*
+ * 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.gui;
 
 /*
@@ -56,8 +76,6 @@ import javax.swing.JSplitPane;
 import javax.swing.JTextArea;
 import javax.swing.KeyStroke;
 import javax.swing.SwingUtilities;
-import javax.swing.UIManager;
-import javax.swing.UnsupportedLookAndFeelException;
 
 /**
  * Sourced from Oracle and adapted
@@ -99,29 +117,11 @@ public class MouseEventDemo extends JPanel implements MouseListener
 
   static final String NEWLINE = System.getProperty("line.separator");
 
+  /**
+   * @j2sIgnore
+   */
   public static void main(String[] args)
   {
-    /* Use an appropriate Look and Feel */
-    try
-    {
-      // UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
-      // UIManager.setLookAndFeel("com.sun.java.swing.plaf.gtk.GTKLookAndFeel");
-      UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
-    } catch (UnsupportedLookAndFeelException ex)
-    {
-      ex.printStackTrace();
-    } catch (IllegalAccessException ex)
-    {
-      ex.printStackTrace();
-    } catch (InstantiationException ex)
-    {
-      ex.printStackTrace();
-    } catch (ClassNotFoundException ex)
-    {
-      ex.printStackTrace();
-    }
-    /* Turn off metal's use of bold fonts */
-    UIManager.put("swing.boldMetal", Boolean.FALSE);
     // Schedule a job for the event dispatch thread:
     // creating and showing this application's GUI.
     javax.swing.SwingUtilities.invokeLater(new Runnable()
@@ -161,8 +161,8 @@ public class MouseEventDemo extends JPanel implements MouseListener
     textArea = new JTextArea();
     textArea.setEditable(false);
     JScrollPane scrollPane = new JScrollPane(textArea);
-    scrollPane
-            .setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
+    scrollPane.setVerticalScrollBarPolicy(
+            JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
     scrollPane.setPreferredSize(new Dimension(400, 75));
 
     blankArea = new BlankArea(Color.YELLOW);
@@ -206,8 +206,6 @@ public class MouseEventDemo extends JPanel implements MouseListener
 
   void logEvent(String eventDescription, MouseEvent e)
   {
-    // textArea.append(eventDescription + " detected on "
-    // + e.getComponent().getClass().getName() + "." + NEWLINE);
     log("------- " + counter++ + ": " + eventDescription);
     log("e.isPopupTrigger: " + e.isPopupTrigger());
     log("SwingUtilities.isRightMouseButton: "
@@ -246,13 +244,11 @@ public class MouseEventDemo extends JPanel implements MouseListener
   @Override
   public void mouseEntered(MouseEvent e)
   {
-    // eventOutput("Mouse entered", e);
   }
 
   @Override
   public void mouseExited(MouseEvent e)
   {
-    // eventOutput("Mouse exited", e);
   }
 
   @Override
@@ -260,4 +256,4 @@ public class MouseEventDemo extends JPanel implements MouseListener
   {
     logEvent("Mouse clicked", e);
   }
-}
\ No newline at end of file
+}