X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fvamsas%2Fobjects%2Fsimple%2FResult.java;h=b3490191f8dc32622e3f66d93b313727c94807be;hb=d8c6e303402455460fb1d987b4c18a2d75e6a3c9;hp=14449119aa423b0071aca2de1ec9e9bb1479b759;hpb=99c58ee0ae2a848f982552e53feaf6d5cb9925e5;p=jalview.git diff --git a/src/vamsas/objects/simple/Result.java b/src/vamsas/objects/simple/Result.java index 1444911..b349019 100755 --- a/src/vamsas/objects/simple/Result.java +++ b/src/vamsas/objects/simple/Result.java @@ -5,25 +5,6 @@ * by the Apache Axis 1.2RC2 Nov 16, 2004 (12:19:44 EST) WSDL2Java emitter. */ -/* -* Jalview - A Sequence Alignment Editor and Viewer -* Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle -* -* This program 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 2 -* of the License, or (at your option) any later version. -* -* This program 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 this program; if not, write to the Free Software -* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -*/ - package vamsas.objects.simple; public class Result implements java.io.Serializable { @@ -70,7 +51,7 @@ public class Result implements java.io.Serializable { /** * Gets the broken value for this Result. - * + * * @return broken */ public boolean isBroken() { @@ -80,7 +61,7 @@ public class Result implements java.io.Serializable { /** * Sets the broken value for this Result. - * + * * @param broken */ public void setBroken(boolean broken) { @@ -90,7 +71,7 @@ public class Result implements java.io.Serializable { /** * Gets the failed value for this Result. - * + * * @return failed */ public boolean isFailed() { @@ -100,7 +81,7 @@ public class Result implements java.io.Serializable { /** * Sets the failed value for this Result. - * + * * @param failed */ public void setFailed(boolean failed) { @@ -110,7 +91,7 @@ public class Result implements java.io.Serializable { /** * Gets the finished value for this Result. - * + * * @return finished */ public boolean isFinished() { @@ -120,7 +101,7 @@ public class Result implements java.io.Serializable { /** * Sets the finished value for this Result. - * + * * @param finished */ public void setFinished(boolean finished) { @@ -130,7 +111,7 @@ public class Result implements java.io.Serializable { /** * Gets the invalid value for this Result. - * + * * @return invalid */ public boolean isInvalid() { @@ -140,7 +121,7 @@ public class Result implements java.io.Serializable { /** * Sets the invalid value for this Result. - * + * * @param invalid */ public void setInvalid(boolean invalid) { @@ -150,7 +131,7 @@ public class Result implements java.io.Serializable { /** * Gets the jobFailed value for this Result. - * + * * @return jobFailed */ public boolean isJobFailed() { @@ -160,7 +141,7 @@ public class Result implements java.io.Serializable { /** * Sets the jobFailed value for this Result. - * + * * @param jobFailed */ public void setJobFailed(boolean jobFailed) { @@ -170,7 +151,7 @@ public class Result implements java.io.Serializable { /** * Gets the queued value for this Result. - * + * * @return queued */ public boolean isQueued() { @@ -180,7 +161,7 @@ public class Result implements java.io.Serializable { /** * Sets the queued value for this Result. - * + * * @param queued */ public void setQueued(boolean queued) { @@ -190,7 +171,7 @@ public class Result implements java.io.Serializable { /** * Gets the running value for this Result. - * + * * @return running */ public boolean isRunning() { @@ -200,7 +181,7 @@ public class Result implements java.io.Serializable { /** * Sets the running value for this Result. - * + * * @param running */ public void setRunning(boolean running) { @@ -210,7 +191,7 @@ public class Result implements java.io.Serializable { /** * Gets the serverError value for this Result. - * + * * @return serverError */ public boolean isServerError() { @@ -220,7 +201,7 @@ public class Result implements java.io.Serializable { /** * Sets the serverError value for this Result. - * + * * @param serverError */ public void setServerError(boolean serverError) { @@ -230,7 +211,7 @@ public class Result implements java.io.Serializable { /** * Gets the state value for this Result. - * + * * @return state */ public int getState() { @@ -240,7 +221,7 @@ public class Result implements java.io.Serializable { /** * Sets the state value for this Result. - * + * * @param state */ public void setState(int state) { @@ -250,7 +231,7 @@ public class Result implements java.io.Serializable { /** * Gets the status value for this Result. - * + * * @return status */ public java.lang.String getStatus() { @@ -260,7 +241,7 @@ public class Result implements java.io.Serializable { /** * Sets the status value for this Result. - * + * * @param status */ public void setStatus(java.lang.String status) { @@ -270,7 +251,7 @@ public class Result implements java.io.Serializable { /** * Gets the suspended value for this Result. - * + * * @return suspended */ public boolean isSuspended() { @@ -280,7 +261,7 @@ public class Result implements java.io.Serializable { /** * Sets the suspended value for this Result. - * + * * @param suspended */ public void setSuspended(boolean suspended) { @@ -298,7 +279,7 @@ public class Result implements java.io.Serializable { } __equalsCalc = obj; boolean _equals; - _equals = true && + _equals = true && this.broken == other.isBroken() && this.failed == other.isFailed() && this.finished == other.isFinished() && @@ -308,7 +289,7 @@ public class Result implements java.io.Serializable { this.running == other.isRunning() && this.serverError == other.isServerError() && this.state == other.getState() && - ((this.status==null && other.getStatus()==null) || + ((this.status==null && other.getStatus()==null) || (this.status!=null && this.status.equals(other.getStatus()))) && this.suspended == other.isSuspended();