X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fjws1%2FWSJob.java;h=8654cb216ca6d984b8c8e2875bdadd397ce0b740;hb=17e77c3f2949a0729322b4a8d907f3f34b6a9914;hp=391639093f316487c79e99f79b271021e8f3e2e2;hpb=153dd62dc91da13ae732600e6ea55ddbe15eab39;p=jalview.git diff --git a/src/jalview/ws/jws1/WSJob.java b/src/jalview/ws/jws1/WSJob.java index 3916390..8654cb2 100644 --- a/src/jalview/ws/jws1/WSJob.java +++ b/src/jalview/ws/jws1/WSJob.java @@ -1,19 +1,22 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6) - * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9) + * Copyright (C) 2015 The Jalview Authors * * 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. - * + * 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 . + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.ws.jws1; @@ -21,7 +24,9 @@ import jalview.ws.AWsJob; abstract class WSJob extends AWsJob { - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see jalview.ws.AWsJob#clearResponse() */ @Override @@ -30,22 +35,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; } /** @@ -59,19 +68,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(); } /** @@ -80,7 +91,7 @@ abstract class WSJob extends AWsJob */ public boolean isFailed() { - return result!=null && result.isFailed(); + return result != null && result.isFailed(); } /** @@ -89,7 +100,7 @@ abstract class WSJob extends AWsJob */ public boolean isFinished() { - return result!=null && result.isFinished(); + return result != null && result.isFinished(); } /** @@ -98,7 +109,7 @@ abstract class WSJob extends AWsJob */ public boolean isInvalid() { - return result!=null && result.isInvalid(); + return result != null && result.isInvalid(); } /** @@ -107,7 +118,7 @@ abstract class WSJob extends AWsJob */ public boolean isJobFailed() { - return result!=null && result.isJobFailed(); + return result != null && result.isJobFailed(); } /** @@ -116,7 +127,7 @@ abstract class WSJob extends AWsJob */ public boolean isQueued() { - return result!=null && result.isQueued(); + return result != null && result.isQueued(); } /** @@ -125,7 +136,7 @@ abstract class WSJob extends AWsJob */ public boolean isRunning() { - return result!=null && result.isRunning(); + return result != null && result.isRunning(); } /** @@ -134,6 +145,6 @@ abstract class WSJob extends AWsJob */ public boolean isServerError() { - return result!=null && result.isServerError(); + return result != null && result.isServerError(); } }