First try with MuscleWS and vamsas.simple.objects
[jalview.git] / src / vamsas / objects / simple / Object.java
1 /**
2  * Object.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis 1.2RC2 Nov 16, 2004 (12:19:44 EST) WSDL2Java emitter.
6  */
7
8 package vamsas.objects.simple;
9
10 public abstract class Object  implements java.io.Serializable {
11
12     public Object() {
13     }
14
15     private java.lang.Object __equalsCalc = null;
16     public synchronized boolean equals(java.lang.Object obj) {
17         if (!(obj instanceof Object)) return false;
18         Object other = (Object) obj;
19         if (obj == null) return false;
20         if (this == obj) return true;
21         if (__equalsCalc != null) {
22             return (__equalsCalc == obj);
23         }
24         __equalsCalc = obj;
25         boolean _equals;
26         _equals = true;
27         __equalsCalc = null;
28         return _equals;
29     }
30
31     private boolean __hashCodeCalc = false;
32     public synchronized int hashCode() {
33         if (__hashCodeCalc) {
34             return 0;
35         }
36         __hashCodeCalc = true;
37         int _hashCode = 1;
38         __hashCodeCalc = false;
39         return _hashCode;
40     }
41
42 }