apply jalview code style
[jalview.git] / src / jalview / gui / JvSwingUtils.java
index a98dc4c..f41e85a 100644 (file)
@@ -26,25 +26,34 @@ import javax.swing.SwingConstants;
 
 /**
  * useful functions for building Swing GUIs
+ * 
  * @author JimP
- *
+ * 
  */
 public final class JvSwingUtils
 {
   /**
-   * wrap a bare html safe string to around 60 characters per line using a <table width=350><tr><td></td> field 
+   * wrap a bare html safe string to around 60 characters per line using a
+   * <table width=350>
+   * <tr>
+   * <td></td> field
+   * 
    * @param ttext
    * @return
    */
   public static String wrapTooltip(String ttext)
   {
-    if (ttext.length()<60)
+    if (ttext.length() < 60)
     {
       return ttext;
-    } else {
-      return "<table width=350 border=0><tr><td>"+ttext+"</td></tr></table>";
+    }
+    else
+    {
+      return "<table width=350 border=0><tr><td>" + ttext
+              + "</td></tr></table>";
     }
   }
+
   public static JButton makeButton(String label, String tooltip,
           ActionListener action)
   {