2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
3 * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
11 * Jalview is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * Jalview - A Sequence Alignment Editor and Viewer
20 * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
22 * This program is free software; you can redistribute it and/or
23 * modify it under the terms of the GNU General Public License
24 * as published by the Free Software Foundation; either version 2
25 * of the License, or (at your option) any later version.
27 * This program is distributed in the hope that it will be useful,
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 * GNU General Public License for more details.
32 * You should have received a copy of the GNU General Public License
33 * along with this program; if not, write to the Free Software
34 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
36 package vamsas.objects.simple;
38 public class MsaResult extends vamsas.objects.simple.Result implements
41 private vamsas.objects.simple.Alignment msa;
43 private java.lang.Object __equalsCalc = null;
45 private boolean __hashCodeCalc = false;
51 public MsaResult(vamsas.objects.simple.Alignment msa)
57 * Gets the msa value for this MsaResult.
61 public vamsas.objects.simple.Alignment getMsa()
67 * Sets the msa value for this MsaResult.
71 public void setMsa(vamsas.objects.simple.Alignment msa)
76 public synchronized boolean equals(java.lang.Object obj)
78 if (!(obj instanceof MsaResult))
83 MsaResult other = (MsaResult) obj;
95 if (__equalsCalc != null)
97 return (__equalsCalc == obj);
103 _equals = super.equals(obj)
104 && (((this.msa == null) && (other.getMsa() == null)) || ((this.msa != null) && this.msa
105 .equals(other.getMsa())));
111 public synchronized int hashCode()
118 __hashCodeCalc = true;
120 int _hashCode = super.hashCode();
122 if (getMsa() != null)
124 _hashCode += getMsa().hashCode();
127 __hashCodeCalc = false;