JAL-1432 updated copyright notices
[jalview.git] / src / vamsas / objects / simple / Secstructpred.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1)
3  * Copyright (C) 2014 The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
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.
10  *  
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.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  * The Jalview Authors are detailed in the 'AUTHORS' file.
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 }