update author list in license for (JAL-826)
[jalview.git] / src / jalview / ws / jws1 / WSJob.java
index c2e1bf9..6c38750 100644 (file)
@@ -1,5 +1,19 @@
-/**
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
+ * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
  * 
+ * This file is part of Jalview.
+ * 
+ * Jalview is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License 
+ * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+ * 
+ * Jalview is distributed in the hope that it will be useful, but 
+ * WITHOUT ANY WARRANTY; without even the implied warranty 
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
+ * PURPOSE.  See the GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
  */
 package jalview.ws.jws1;
 
@@ -7,7 +21,9 @@ import jalview.ws.AWsJob;
 
 abstract class WSJob extends AWsJob
 {
-  /* (non-Javadoc)
+  /*
+   * (non-Javadoc)
+   * 
    * @see jalview.ws.AWsJob#clearResponse()
    */
   @Override
@@ -16,22 +32,26 @@ abstract class WSJob extends AWsJob
     result = null;
   }
 
-  /* (non-Javadoc)
+  /*
+   * (non-Javadoc)
+   * 
    * @see jalview.ws.AWsJob#hasResponse()
    */
   @Override
   public boolean hasResponse()
   {
-    return result!=null;
+    return result != null;
   }
 
-  /* (non-Javadoc)
+  /*
+   * (non-Javadoc)
+   * 
    * @see jalview.ws.AWsJob#hasStatus()
    */
   @Override
   public boolean hasStatus()
   {
-    return result!=null && result.getStatus()!=null;
+    return result != null && result.getStatus() != null;
   }
 
   /**
@@ -45,19 +65,21 @@ abstract class WSJob extends AWsJob
    */
   public String getStatus()
   {
-    return result==null ? null : result.getStatus();
+    return result == null ? null : result.getStatus();
   }
 
-  public String getState() {
-    return result==null ? "NULL result" : ""+result.getState(); 
+  public String getState()
+  {
+    return result == null ? "NULL result" : "" + result.getState();
   }
+
   /**
    * @return
    * @see vamsas.objects.simple.Result#isBroken()
    */
   public boolean isBroken()
   {
-    return result!=null && result.isBroken();
+    return result != null && result.isBroken();
   }
 
   /**
@@ -66,7 +88,7 @@ abstract class WSJob extends AWsJob
    */
   public boolean isFailed()
   {
-    return result!=null && result.isFailed();
+    return result != null && result.isFailed();
   }
 
   /**
@@ -75,7 +97,7 @@ abstract class WSJob extends AWsJob
    */
   public boolean isFinished()
   {
-    return result!=null && result.isFinished();
+    return result != null && result.isFinished();
   }
 
   /**
@@ -84,7 +106,7 @@ abstract class WSJob extends AWsJob
    */
   public boolean isInvalid()
   {
-    return result!=null && result.isInvalid();
+    return result != null && result.isInvalid();
   }
 
   /**
@@ -93,7 +115,7 @@ abstract class WSJob extends AWsJob
    */
   public boolean isJobFailed()
   {
-    return result!=null && result.isJobFailed();
+    return result != null && result.isJobFailed();
   }
 
   /**
@@ -102,7 +124,7 @@ abstract class WSJob extends AWsJob
    */
   public boolean isQueued()
   {
-    return result!=null && result.isQueued();
+    return result != null && result.isQueued();
   }
 
   /**
@@ -111,7 +133,7 @@ abstract class WSJob extends AWsJob
    */
   public boolean isRunning()
   {
-    return result!=null && result.isRunning();
+    return result != null && result.isRunning();
   }
 
   /**
@@ -120,6 +142,6 @@ abstract class WSJob extends AWsJob
    */
   public boolean isServerError()
   {
-    return result!=null && result.isServerError();
+    return result != null && result.isServerError();
   }
-}
\ No newline at end of file
+}