merge from 2_4_Release branch
[jalview.git] / src / vamsas / objects / simple / Object.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 abstract class Object implements java.io.Serializable
22 {
23
24   public Object()
25   {
26   }
27
28   private java.lang.Object __equalsCalc = null;
29
30   public synchronized boolean equals(java.lang.Object obj)
31   {
32     if (!(obj instanceof Object))
33       return false;
34     Object other = (Object) obj;
35     if (obj == null)
36       return false;
37     if (this == obj)
38       return true;
39     if (__equalsCalc != null)
40     {
41       return (__equalsCalc == obj);
42     }
43     __equalsCalc = obj;
44     boolean _equals;
45     _equals = true;
46     __equalsCalc = null;
47     return _equals;
48   }
49
50   private boolean __hashCodeCalc = false;
51
52   public synchronized int hashCode()
53   {
54     if (__hashCodeCalc)
55     {
56       return 0;
57     }
58     __hashCodeCalc = true;
59     int _hashCode = 1;
60     __hashCodeCalc = false;
61     return _hashCode;
62   }
63
64 }