blob: 0e46ccbb000e3eb8cad2364f0827c49c3c92ca9e [file] [log] [blame]
/**
* TagDataSearchResult.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
*/
package com.intellij.tasks.mantis.model;
public class TagDataSearchResult implements java.io.Serializable {
private com.intellij.tasks.mantis.model.TagData[] results;
private java.math.BigInteger total_results;
public TagDataSearchResult() {
}
public TagDataSearchResult(
com.intellij.tasks.mantis.model.TagData[] results,
java.math.BigInteger total_results) {
this.results = results;
this.total_results = total_results;
}
/**
* Gets the results value for this TagDataSearchResult.
*
* @return results
*/
public com.intellij.tasks.mantis.model.TagData[] getResults() {
return results;
}
/**
* Sets the results value for this TagDataSearchResult.
*
* @param results
*/
public void setResults(com.intellij.tasks.mantis.model.TagData[] results) {
this.results = results;
}
/**
* Gets the total_results value for this TagDataSearchResult.
*
* @return total_results
*/
public java.math.BigInteger getTotal_results() {
return total_results;
}
/**
* Sets the total_results value for this TagDataSearchResult.
*
* @param total_results
*/
public void setTotal_results(java.math.BigInteger total_results) {
this.total_results = total_results;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof TagDataSearchResult)) return false;
TagDataSearchResult other = (TagDataSearchResult) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.results==null && other.getResults()==null) ||
(this.results!=null &&
java.util.Arrays.equals(this.results, other.getResults()))) &&
((this.total_results==null && other.getTotal_results()==null) ||
(this.total_results!=null &&
this.total_results.equals(other.getTotal_results())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getResults() != null) {
for (int i=0;
i<java.lang.reflect.Array.getLength(getResults());
i++) {
java.lang.Object obj = java.lang.reflect.Array.get(getResults(), i);
if (obj != null &&
!obj.getClass().isArray()) {
_hashCode += obj.hashCode();
}
}
}
if (getTotal_results() != null) {
_hashCode += getTotal_results().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(TagDataSearchResult.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "TagDataSearchResult"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("results");
elemField.setXmlName(new javax.xml.namespace.QName("", "results"));
elemField.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "TagData"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("total_results");
elemField.setXmlName(new javax.xml.namespace.QName("", "total_results"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "integer"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
}
/**
* 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);
}
}