JAL-1355 removed all top level html tags from message bundles
[jalview.git] / src / jalview / gui / JvSwingUtils.java
index 4dfd40d..d546584 100644 (file)
@@ -46,20 +46,22 @@ public final class JvSwingUtils
    * <table width=350>
    * <tr>
    * <td></td> field
+ * @param enclose TODO
+ * @param ttext
    * 
-   * @param ttext
    * @return
    */
-  public static String wrapTooltip(String ttext)
+  public static String wrapTooltip(boolean enclose, String ttext)
   {
+         
     if (ttext.length() < 60)
     {
-      return ttext;
+      return enclose ? "<html>"+ttext+"</html>" : ttext;
     }
     else
     {
-      return "<table width=350 border=0><tr><td>" + ttext
-              + "</td></tr></table>";
+      return (enclose ? "<html>" : "") + "<table width=350 border=0><tr><td>" + ttext
+              + "</td></tr></table>" + ((enclose ? "</html>" : ""));
     }
   }