apply jalview code style
[jalview.git] / src / jalview / ws / AWsJob.java
index 17d361b..e653539 100644 (file)
@@ -29,7 +29,8 @@ public abstract class AWsJob
   protected String jobId;
 
   /**
-   * @param jobId the jobId to set
+   * @param jobId
+   *          the jobId to set
    */
   public void setJobId(String jobId)
   {
@@ -47,7 +48,8 @@ public abstract class AWsJob
   int allowedServerExceptions = 3;
 
   /**
-   * @param allowedServerExceptions the allowedServerExceptions to set
+   * @param allowedServerExceptions
+   *          the allowedServerExceptions to set
    */
   public void setAllowedServerExceptions(int allowedServerExceptions)
   {
@@ -61,7 +63,8 @@ public abstract class AWsJob
   protected boolean submitted = false;
 
   /**
-   * @param jobnum the jobnum to set
+   * @param jobnum
+   *          the jobnum to set
    */
   public void setJobnum(int jobnum)
   {
@@ -69,7 +72,8 @@ public abstract class AWsJob
   }
 
   /**
-   * @param submitted the submitted to set
+   * @param submitted
+   *          the submitted to set
    */
   public void setSubmitted(boolean submitted)
   {
@@ -77,7 +81,8 @@ public abstract class AWsJob
   }
 
   /**
-   * @param subjobComplete the subjobComplete to set
+   * @param subjobComplete
+   *          the subjobComplete to set
    */
   public void setSubjobComplete(boolean subjobComplete)
   {
@@ -203,14 +208,19 @@ public abstract class AWsJob
   abstract public String getStatus();
 
   abstract public boolean hasResponse();
+
   abstract public void clearResponse();
+
   abstract public String getState();
+
   /**
    * generates response using the abstract service flags.
-   * @return a standard state response 
+   * 
+   * @return a standard state response
    */
-  protected String _defaultState() {
-    
+  protected String _defaultState()
+  {
+
     String state = "";
     return state;
   }