Formatted source
[jalview.git] / src / vamsas / objects / simple / MsaResult.java
1 /**
2  * MsaResult.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis 1.2RC2 Nov 16, 2004 (12:19:44 EST) WSDL2Java emitter.
6  */\r
7 \r
8 /*
9 * Jalview - A Sequence Alignment Editor and Viewer
10 * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
25 */\r
26 package vamsas.objects.simple;\r
27 \r
28 public class MsaResult extends vamsas.objects.simple.Result\r
29     implements java.io.Serializable {\r
30     private vamsas.objects.simple.Alignment msa;\r
31     private java.lang.Object __equalsCalc = null;\r
32     private boolean __hashCodeCalc = false;\r
33 \r
34     public MsaResult() {\r
35     }\r
36 \r
37     public MsaResult(vamsas.objects.simple.Alignment msa) {\r
38         this.msa = msa;\r
39     }\r
40 \r
41     /**
42  * Gets the msa value for this MsaResult.
43  *
44  * @return msa
45  */\r
46     public vamsas.objects.simple.Alignment getMsa() {\r
47         return msa;\r
48     }\r
49 \r
50     /**
51  * Sets the msa value for this MsaResult.
52  *
53  * @param msa
54  */\r
55     public void setMsa(vamsas.objects.simple.Alignment msa) {\r
56         this.msa = msa;\r
57     }\r
58 \r
59     public synchronized boolean equals(java.lang.Object obj) {\r
60         if (!(obj instanceof MsaResult)) {\r
61             return false;\r
62         }\r
63 \r
64         MsaResult other = (MsaResult) obj;\r
65 \r
66         if (obj == null) {\r
67             return false;\r
68         }\r
69 \r
70         if (this == obj) {\r
71             return true;\r
72         }\r
73 \r
74         if (__equalsCalc != null) {\r
75             return (__equalsCalc == obj);\r
76         }\r
77 \r
78         __equalsCalc = obj;\r
79 \r
80         boolean _equals;\r
81         _equals = super.equals(obj) &&\r
82             (((this.msa == null) && (other.getMsa() == null)) ||\r
83             ((this.msa != null) && this.msa.equals(other.getMsa())));\r
84         __equalsCalc = null;\r
85 \r
86         return _equals;\r
87     }\r
88 \r
89     public synchronized int hashCode() {\r
90         if (__hashCodeCalc) {\r
91             return 0;\r
92         }\r
93 \r
94         __hashCodeCalc = true;\r
95 \r
96         int _hashCode = super.hashCode();\r
97 \r
98         if (getMsa() != null) {\r
99             _hashCode += getMsa().hashCode();\r
100         }\r
101 \r
102         __hashCodeCalc = false;\r
103 \r
104         return _hashCode;\r
105     }\r
106 }\r