formatting
[jalview.git] / src / jalview / ws / jws2 / jabaws2 / Jws2Instance.java
index dfe5188..a4a2a21 100644 (file)
@@ -22,25 +22,33 @@ public class Jws2Instance
   public String hosturl;
 
   public String serviceType;
+
   public String action;
+
   public JABAService service;
+
   public String description;
+
   public String docUrl;
-  public Jws2Instance(String hosturl, String serviceType, String action, String description, 
-          JABAService service)
+
+  public Jws2Instance(String hosturl, String serviceType, String action,
+          String description, JABAService service)
   {
     super();
     this.hosturl = hosturl;
     this.serviceType = serviceType;
     this.service = service;
-    this.action=action;
+    this.action = action;
     this.description = description;
-    int p=description.indexOf("MORE INFORMATION:");
-    if (p>-1)
+    int p = description.indexOf("MORE INFORMATION:");
+    if (p > -1)
     {
-      docUrl = description.substring(description.indexOf("http",p)).trim();
-      if (docUrl.indexOf('\n')>-1) { docUrl = docUrl.substring(0,docUrl.indexOf("\n")).trim(); }
-      
+      docUrl = description.substring(description.indexOf("http", p)).trim();
+      if (docUrl.indexOf('\n') > -1)
+      {
+        docUrl = docUrl.substring(0, docUrl.indexOf("\n")).trim();
+      }
+
     }
   }
 
@@ -95,7 +103,7 @@ public class Jws2Instance
    */
   public String getActionText()
   {
-    return action+" with " + serviceType;
+    return action + " with " + serviceType;
   }
 
   /**
@@ -114,7 +122,9 @@ public class Jws2Instance
     {
       return ((SequenceAnnotation) service).getRunnerOptions();
     }
-    throw new Error("Implementation Error: Runner Config not available for a JABAWS service of type "+serviceType+" ("+service.getClass()+")");
+    throw new Error(
+            "Implementation Error: Runner Config not available for a JABAWS service of type "
+                    + serviceType + " (" + service.getClass() + ")");
   }
 
   @Override
@@ -183,15 +193,16 @@ public class Jws2Instance
     if (service instanceof MsaWS<?>)
     {
       new MsaWSClient().attachWSMenuEntry(atpoint, this, alignFrame);
-    } else 
-    if (service instanceof SequenceAnnotation<?>){
-      new SequenceAnnotationWSClient().attachWSMenuEntry(atpoint, this, alignFrame);
+    }
+    else if (service instanceof SequenceAnnotation<?>)
+    {
+      new SequenceAnnotationWSClient().attachWSMenuEntry(atpoint, this,
+              alignFrame);
     }
   }
 
-  
   public String getServiceTypeURI()
   {
-    return "java:"+serviceType;
+    return "java:" + serviceType;
   }
 }
\ No newline at end of file