JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / vamsas / objects / simple / JpredResult.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ 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
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package vamsas.objects.simple;
22
23 public class JpredResult extends vamsas.objects.simple.Result
24         implements java.io.Serializable
25 {
26   private java.lang.String aligfile;
27
28   private java.lang.String predfile;
29
30   public JpredResult()
31   {
32   }
33
34   public JpredResult(java.lang.String aligfile, java.lang.String predfile)
35   {
36     this.aligfile = aligfile;
37     this.predfile = predfile;
38   }
39
40   /**
41    * Gets the aligfile value for this JpredResult.
42    * 
43    * @return aligfile
44    */
45   public java.lang.String getAligfile()
46   {
47     return aligfile;
48   }
49
50   /**
51    * Sets the aligfile value for this JpredResult.
52    * 
53    * @param aligfile
54    */
55   public void setAligfile(java.lang.String aligfile)
56   {
57     this.aligfile = aligfile;
58   }
59
60   /**
61    * Gets the predfile value for this JpredResult.
62    * 
63    * @return predfile
64    */
65   public java.lang.String getPredfile()
66   {
67     return predfile;
68   }
69
70   /**
71    * Sets the predfile value for this JpredResult.
72    * 
73    * @param predfile
74    */
75   public void setPredfile(java.lang.String predfile)
76   {
77     this.predfile = predfile;
78   }
79
80   private java.lang.Object __equalsCalc = null;
81
82   @Override
83   public synchronized boolean equals(java.lang.Object obj)
84   {
85     if (obj == null)
86     {
87       return false;
88     }
89     if (!(obj instanceof JpredResult))
90     {
91       return false;
92     }
93     JpredResult other = (JpredResult) obj;
94     if (this == obj)
95     {
96       return true;
97     }
98     if (__equalsCalc != null)
99     {
100       return (__equalsCalc == obj);
101     }
102     __equalsCalc = obj;
103     boolean _equals;
104     _equals = super.equals(obj)
105             && ((this.aligfile == null && other.getAligfile() == null)
106                     || (this.aligfile != null
107                             && this.aligfile.equals(other.getAligfile())))
108             && ((this.predfile == null && other.getPredfile() == null)
109                     || (this.predfile != null
110                             && this.predfile.equals(other.getPredfile())));
111     __equalsCalc = null;
112     return _equals;
113   }
114
115   private boolean __hashCodeCalc = false;
116
117   @Override
118   public synchronized int hashCode()
119   {
120     if (__hashCodeCalc)
121     {
122       return 0;
123     }
124     __hashCodeCalc = true;
125     int _hashCode = super.hashCode();
126     if (getAligfile() != null)
127     {
128       _hashCode += getAligfile().hashCode();
129     }
130     if (getPredfile() != null)
131     {
132       _hashCode += getPredfile().hashCode();
133     }
134     __hashCodeCalc = false;
135     return _hashCode;
136   }
137
138 }