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