JAL-1645 Version-Rel Version 2.9 Year-Rel 2015 Licensing glob
[jalview.git] / src / uk / ac / ebi / www / Data.java
index bc8ec84..9a71fdd 100755 (executable)
-/**
- * Data.java
- *
- * This file was auto-generated from WSDL
- * by the Apache Axis WSDL2Java emitter.
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9)
+ * Copyright (C) 2015 The Jalview Authors
+ * 
+ * This file is part of Jalview.
+ * 
+ * Jalview is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License 
+ * as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *  
+ * Jalview is distributed in the hope that it will be useful, but 
+ * WITHOUT ANY WARRANTY; without even the implied warranty 
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
+ * PURPOSE.  See the GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
  */
-
 package uk.ac.ebi.www;
 
-public class Data  implements java.io.Serializable {
-    private java.lang.String type;
-    private java.lang.String content;
+public class Data implements java.io.Serializable
+{
+  private java.lang.String type;
 
-    public Data() {
-    }
+  private java.lang.String content;
 
-    public java.lang.String getType() {
-        return type;
-    }
+  public Data()
+  {
+  }
 
-    public void setType(java.lang.String type) {
-        this.type = type;
-    }
+  public java.lang.String getType()
+  {
+    return type;
+  }
 
-    public java.lang.String getContent() {
-        return content;
-    }
+  public void setType(java.lang.String type)
+  {
+    this.type = type;
+  }
 
-    public void setContent(java.lang.String content) {
-        this.content = content;
-    }
+  public java.lang.String getContent()
+  {
+    return content;
+  }
 
-    private java.lang.Object __equalsCalc = null;
-    public synchronized boolean equals(java.lang.Object obj) {
-        if (!(obj instanceof Data)) return false;
-        Data other = (Data) obj;
-        if (obj == null) return false;
-        if (this == obj) return true;
-        if (__equalsCalc != null) {
-            return (__equalsCalc == obj);
-        }
-        __equalsCalc = obj;
-        boolean _equals;
-        _equals = true && 
-            ((type==null && other.getType()==null) || 
-             (type!=null &&
-              type.equals(other.getType()))) &&
-            ((content==null && other.getContent()==null) || 
-             (content!=null &&
-              content.equals(other.getContent())));
-        __equalsCalc = null;
-        return _equals;
-    }
+  public void setContent(java.lang.String content)
+  {
+    this.content = content;
+  }
 
-    private boolean __hashCodeCalc = false;
-    public synchronized int hashCode() {
-        if (__hashCodeCalc) {
-            return 0;
-        }
-        __hashCodeCalc = true;
-        int _hashCode = 1;
-        if (getType() != null) {
-            _hashCode += getType().hashCode();
-        }
-        if (getContent() != null) {
-            _hashCode += getContent().hashCode();
-        }
-        __hashCodeCalc = false;
-        return _hashCode;
-    }
+  private java.lang.Object __equalsCalc = null;
 
-    // Type metadata
-    private static org.apache.axis.description.TypeDesc typeDesc =
-        new org.apache.axis.description.TypeDesc(Data.class);
-
-    static {
-        org.apache.axis.description.FieldDesc field = new org.apache.axis.description.ElementDesc();
-        field.setFieldName("type");
-        field.setXmlName(new javax.xml.namespace.QName("", "type"));
-        field.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
-        typeDesc.addFieldDesc(field);
-        field = new org.apache.axis.description.ElementDesc();
-        field.setFieldName("content");
-        field.setXmlName(new javax.xml.namespace.QName("", "content"));
-        field.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
-        typeDesc.addFieldDesc(field);
-    };
-
-    /**
-     * Return type metadata object
-     */
-    public static org.apache.axis.description.TypeDesc getTypeDesc() {
-        return typeDesc;
+  @Override
+  public synchronized boolean equals(java.lang.Object obj)
+  {
+    if (obj == null)
+    {
+      return false;
     }
-
-    /**
-     * Get Custom Serializer
-     */
-    public static org.apache.axis.encoding.Serializer getSerializer(
-           java.lang.String mechType, 
-           java.lang.Class _javaType,  
-           javax.xml.namespace.QName _xmlType) {
-        return 
-          new  org.apache.axis.encoding.ser.BeanSerializer(
-            _javaType, _xmlType, typeDesc);
+    if (!(obj instanceof Data))
+    {
+      return false;
+    }
+    Data other = (Data) obj;
+    if (this == obj)
+    {
+      return true;
     }
+    if (__equalsCalc != null)
+    {
+      return (__equalsCalc == obj);
+    }
+    __equalsCalc = obj;
+    boolean _equals;
+    _equals = true
+            && ((type == null && other.getType() == null) || (type != null && type
+                    .equals(other.getType())))
+            && ((content == null && other.getContent() == null) || (content != null && content
+                    .equals(other.getContent())));
+    __equalsCalc = null;
+    return _equals;
+  }
+
+  private boolean __hashCodeCalc = false;
 
-    /**
-     * Get Custom Deserializer
-     */
-    public static org.apache.axis.encoding.Deserializer getDeserializer(
-           java.lang.String mechType, 
-           java.lang.Class _javaType,  
-           javax.xml.namespace.QName _xmlType) {
-        return 
-          new  org.apache.axis.encoding.ser.BeanDeserializer(
-            _javaType, _xmlType, typeDesc);
+  @Override
+  public synchronized int hashCode()
+  {
+    if (__hashCodeCalc)
+    {
+      return 0;
+    }
+    __hashCodeCalc = true;
+    int _hashCode = 1;
+    if (getType() != null)
+    {
+      _hashCode += getType().hashCode();
     }
+    if (getContent() != null)
+    {
+      _hashCode += getContent().hashCode();
+    }
+    __hashCodeCalc = false;
+    return _hashCode;
+  }
+
+  // Type metadata
+  private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc(
+          Data.class);
+
+  static
+  {
+    org.apache.axis.description.FieldDesc field = new org.apache.axis.description.ElementDesc();
+    field.setFieldName("type");
+    field.setXmlName(new javax.xml.namespace.QName("", "type"));
+    field.setXmlType(new javax.xml.namespace.QName(
+            "http://www.w3.org/2001/XMLSchema", "string"));
+    typeDesc.addFieldDesc(field);
+    field = new org.apache.axis.description.ElementDesc();
+    field.setFieldName("content");
+    field.setXmlName(new javax.xml.namespace.QName("", "content"));
+    field.setXmlType(new javax.xml.namespace.QName(
+            "http://www.w3.org/2001/XMLSchema", "string"));
+    typeDesc.addFieldDesc(field);
+  };
+
+  /**
+   * Return type metadata object
+   */
+  public static org.apache.axis.description.TypeDesc getTypeDesc()
+  {
+    return typeDesc;
+  }
+
+  /**
+   * Get Custom Serializer
+   */
+  public static org.apache.axis.encoding.Serializer getSerializer(
+          java.lang.String mechType, java.lang.Class _javaType,
+          javax.xml.namespace.QName _xmlType)
+  {
+    return new org.apache.axis.encoding.ser.BeanSerializer(_javaType,
+            _xmlType, typeDesc);
+  }
+
+  /**
+   * Get Custom Deserializer
+   */
+  public static org.apache.axis.encoding.Deserializer getDeserializer(
+          java.lang.String mechType, java.lang.Class _javaType,
+          javax.xml.namespace.QName _xmlType)
+  {
+    return new org.apache.axis.encoding.ser.BeanDeserializer(_javaType,
+            _xmlType, typeDesc);
+  }
 
 }