Clover icon

Coverage Report

  1. Project Clover database Tue Oct 29 2024 21:36:55 GMT
  2. Package uk.ac.ebi.www

File Data.java

 

Coverage histogram

../../../../img/srcFileCovDistChart0.png
58% of files have more coverage

Code metrics

14
41
11
1
160
113
18
0.44
3.73
11
1.64

Classes

Class Line # Actions
Data 23 41 18
0.00%
 

Contributing tests

No tests hitting this source file were found.

Source view

1    /*
2    * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3    * Copyright (C) $$Year-Rel$$ 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
10    * of the License, or (at your option) any later version.
11    *
12    * Jalview is distributed in the hope that it will be useful, but
13    * WITHOUT ANY WARRANTY; without even the implied warranty
14    * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15    * PURPOSE. See the GNU General Public License for more details.
16    *
17    * You should have received a copy of the GNU General Public License
18    * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19    * The Jalview Authors are detailed in the 'AUTHORS' file.
20    */
21    package uk.ac.ebi.www;
22   
 
23    public class Data implements java.io.Serializable
24    {
25    private java.lang.String type;
26   
27    private java.lang.String content;
28   
 
29  0 toggle public Data()
30    {
31    }
32   
 
33  0 toggle public java.lang.String getType()
34    {
35  0 return type;
36    }
37   
 
38  0 toggle public void setType(java.lang.String type)
39    {
40  0 this.type = type;
41    }
42   
 
43  0 toggle public java.lang.String getContent()
44    {
45  0 return content;
46    }
47   
 
48  0 toggle public void setContent(java.lang.String content)
49    {
50  0 this.content = content;
51    }
52   
53    private java.lang.Object __equalsCalc = null;
54   
 
55  0 toggle @Override
56    public synchronized boolean equals(java.lang.Object obj)
57    {
58  0 if (obj == null)
59    {
60  0 return false;
61    }
62  0 if (!(obj instanceof Data))
63    {
64  0 return false;
65    }
66  0 Data other = (Data) obj;
67  0 if (this == obj)
68    {
69  0 return true;
70    }
71  0 if (__equalsCalc != null)
72    {
73  0 return (__equalsCalc == obj);
74    }
75  0 __equalsCalc = obj;
76  0 boolean _equals;
77  0 _equals = true
78    && ((type == null && other.getType() == null)
79    || (type != null && type.equals(other.getType())))
80    && ((content == null && other.getContent() == null)
81    || (content != null
82    && content.equals(other.getContent())));
83  0 __equalsCalc = null;
84  0 return _equals;
85    }
86   
87    private boolean __hashCodeCalc = false;
88   
 
89  0 toggle @Override
90    public synchronized int hashCode()
91    {
92  0 if (__hashCodeCalc)
93    {
94  0 return 0;
95    }
96  0 __hashCodeCalc = true;
97  0 int _hashCode = 1;
98  0 if (getType() != null)
99    {
100  0 _hashCode += getType().hashCode();
101    }
102  0 if (getContent() != null)
103    {
104  0 _hashCode += getContent().hashCode();
105    }
106  0 __hashCodeCalc = false;
107  0 return _hashCode;
108    }
109   
110    // Type metadata
111    private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc(
112    Data.class);
113   
 
114  0 toggle static
115    {
116  0 org.apache.axis.description.FieldDesc field = new org.apache.axis.description.ElementDesc();
117  0 field.setFieldName("type");
118  0 field.setXmlName(new javax.xml.namespace.QName("", "type"));
119  0 field.setXmlType(new javax.xml.namespace.QName(
120    "http://www.w3.org/2001/XMLSchema", "string"));
121  0 typeDesc.addFieldDesc(field);
122  0 field = new org.apache.axis.description.ElementDesc();
123  0 field.setFieldName("content");
124  0 field.setXmlName(new javax.xml.namespace.QName("", "content"));
125  0 field.setXmlType(new javax.xml.namespace.QName(
126    "http://www.w3.org/2001/XMLSchema", "string"));
127  0 typeDesc.addFieldDesc(field);
128    };
129   
130    /**
131    * Return type metadata object
132    */
 
133  0 toggle public static org.apache.axis.description.TypeDesc getTypeDesc()
134    {
135  0 return typeDesc;
136    }
137   
138    /**
139    * Get Custom Serializer
140    */
 
141  0 toggle public static org.apache.axis.encoding.Serializer getSerializer(
142    java.lang.String mechType, java.lang.Class _javaType,
143    javax.xml.namespace.QName _xmlType)
144    {
145  0 return new org.apache.axis.encoding.ser.BeanSerializer(_javaType,
146    _xmlType, typeDesc);
147    }
148   
149    /**
150    * Get Custom Deserializer
151    */
 
152  0 toggle public static org.apache.axis.encoding.Deserializer getDeserializer(
153    java.lang.String mechType, java.lang.Class _javaType,
154    javax.xml.namespace.QName _xmlType)
155    {
156  0 return new org.apache.axis.encoding.ser.BeanDeserializer(_javaType,
157    _xmlType, typeDesc);
158    }
159   
160    }