com.allegro.webapi.ArrayOfSolditemstruct Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of allegro-webapi Show documentation
Show all versions of allegro-webapi Show documentation
Allegro Web API WSDL converted to Java
/**
* ArrayOfSolditemstruct.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.allegro.webapi;
public class ArrayOfSolditemstruct implements java.io.Serializable {
private com.allegro.webapi.SoldItemStruct[] item;
public ArrayOfSolditemstruct() {
}
public ArrayOfSolditemstruct(
com.allegro.webapi.SoldItemStruct[] item) {
this.item = item;
}
/**
* Gets the item value for this ArrayOfSolditemstruct.
*
* @return item
*/
public com.allegro.webapi.SoldItemStruct[] getItem() {
return item;
}
/**
* Sets the item value for this ArrayOfSolditemstruct.
*
* @param item
*/
public void setItem(com.allegro.webapi.SoldItemStruct[] item) {
this.item = item;
}
public com.allegro.webapi.SoldItemStruct getItem(int i) {
return this.item[i];
}
public void setItem(int i, com.allegro.webapi.SoldItemStruct _value) {
this.item[i] = _value;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof ArrayOfSolditemstruct)) return false;
ArrayOfSolditemstruct other = (ArrayOfSolditemstruct) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.item==null && other.getItem()==null) ||
(this.item!=null &&
java.util.Arrays.equals(this.item, other.getItem())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getItem() != null) {
for (int i=0;
i