X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fuk%2Fac%2Febi%2Fwww%2FData.java;h=2020fc9f27ae24f580250e032d111b407cb37805;hb=11ec9d4540710b65b82b8b901de07b441c130887;hp=9bb671e761b83d236b02ecc9bcbca477c43d4714;hpb=7bc226b58110fa26d9dbd3f0c78095d06909ffc3;p=jalview.git diff --git a/src/uk/ac/ebi/www/Data.java b/src/uk/ac/ebi/www/Data.java index 9bb671e..2020fc9 100755 --- a/src/uk/ac/ebi/www/Data.java +++ b/src/uk/ac/ebi/www/Data.java @@ -1,16 +1,29 @@ -/** - * Data.java - * - * This file was auto-generated from WSDL - * by the Apache Axis WSDL2Java emitter. +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ 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 . + * The Jalview Authors are detailed in the 'AUTHORS' file. */ - package uk.ac.ebi.www; -public class Data - implements java.io.Serializable +public class Data implements java.io.Serializable { private java.lang.String type; + private java.lang.String content; public Data() @@ -38,17 +51,19 @@ public class Data } private java.lang.Object __equalsCalc = null; + + @Override public synchronized boolean equals(java.lang.Object obj) { - if (! (obj instanceof Data)) + if (obj == null) { return false; } - Data other = (Data) obj; - if (obj == null) + if (!(obj instanceof Data)) { return false; } + Data other = (Data) obj; if (this == obj) { return true; @@ -59,18 +74,18 @@ public class Data } __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()))); + _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; + + @Override public synchronized int hashCode() { if (__hashCodeCalc) @@ -92,23 +107,22 @@ public class Data } // Type metadata - private static org.apache.axis.description.TypeDesc typeDesc = - new org.apache.axis.description.TypeDesc(Data.class); + 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(); + 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")); + "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")); + "http://www.w3.org/2001/XMLSchema", "string")); typeDesc.addFieldDesc(field); }; @@ -124,26 +138,22 @@ public class Data * Get Custom Serializer */ public static org.apache.axis.encoding.Serializer getSerializer( - java.lang.String mechType, - java.lang.Class _javaType, - javax.xml.namespace.QName _xmlType) + java.lang.String mechType, java.lang.Class _javaType, + javax.xml.namespace.QName _xmlType) { - return - new org.apache.axis.encoding.ser.BeanSerializer( - _javaType, _xmlType, typeDesc); + 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) + java.lang.String mechType, java.lang.Class _javaType, + javax.xml.namespace.QName _xmlType) { - return - new org.apache.axis.encoding.ser.BeanDeserializer( - _javaType, _xmlType, typeDesc); + return new org.apache.axis.encoding.ser.BeanDeserializer(_javaType, + _xmlType, typeDesc); } }