e0d702154d96c7bd0c5ce2146e6694e1ea23628c
[jalview.git] / src / vamsas / objects / simple / JpredResult.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
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
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 implements
24         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   public synchronized boolean equals(java.lang.Object obj)
83   {
84     if (!(obj instanceof JpredResult))
85     {
86       return false;
87     }
88     JpredResult other = (JpredResult) obj;
89     if (obj == null)
90     {
91       return false;
92     }
93     if (this == obj)
94     {
95       return true;
96     }
97     if (__equalsCalc != null)
98     {
99       return (__equalsCalc == obj);
100     }
101     __equalsCalc = obj;
102     boolean _equals;
103     _equals = super.equals(obj)
104             && ((this.aligfile == null && other.getAligfile() == null) || (this.aligfile != null && this.aligfile
105                     .equals(other.getAligfile())))
106             && ((this.predfile == null && other.getPredfile() == null) || (this.predfile != null && this.predfile
107                     .equals(other.getPredfile())));
108     __equalsCalc = null;
109     return _equals;
110   }
111
112   private boolean __hashCodeCalc = false;
113
114   public synchronized int hashCode()
115   {
116     if (__hashCodeCalc)
117     {
118       return 0;
119     }
120     __hashCodeCalc = true;
121     int _hashCode = super.hashCode();
122     if (getAligfile() != null)
123     {
124       _hashCode += getAligfile().hashCode();
125     }
126     if (getPredfile() != null)
127     {
128       _hashCode += getPredfile().hashCode();
129     }
130     __hashCodeCalc = false;
131     return _hashCode;
132   }
133
134 }