apply jalview code style
[jalview.git] / src / jalview / ws / jws2 / dm / JabaOption.java
index 7090b43..be4912b 100644 (file)
@@ -74,12 +74,14 @@ public class JabaOption implements jalview.ws.params.OptionI
   @Override
   public void setDefaultValue(String selectedItem)
   {
-    try {
+    try
+    {
       opt.setDefaultValue(selectedItem);
     } catch (Exception e)
     {
       e.printStackTrace();
-      throw new Error("Implementation error: cannot set Jaba Option to a value outside its allowed value range!");
+      throw new Error(
+              "Implementation error: cannot set Jaba Option to a value outside its allowed value range!");
     }
   }
 
@@ -90,12 +92,14 @@ public class JabaOption implements jalview.ws.params.OptionI
   }
 
   /**
-   * get the underlying Jaba option or parameter object. Note - use copy first if you want to modify the value of the option.
+   * get the underlying Jaba option or parameter object. Note - use copy first
+   * if you want to modify the value of the option.
+   * 
    * @return
    */
   public Option getOption()
   {
     return opt;
   }
-  
+
 }