77eceb02a21dd61df38d04887e85e52bc1fb4d0d
[jalview.git] / src / vamsas / objects / simple / Object.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 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 }