com.allegro.webapi.ArrayOfActiondatastruct 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
/**
* ArrayOfActiondatastruct.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 ArrayOfActiondatastruct implements java.io.Serializable {
private com.allegro.webapi.ActionDataStruct[] item;
public ArrayOfActiondatastruct() {
}
public ArrayOfActiondatastruct(
com.allegro.webapi.ActionDataStruct[] item) {
this.item = item;
}
/**
* Gets the item value for this ArrayOfActiondatastruct.
*
* @return item
*/
public com.allegro.webapi.ActionDataStruct[] getItem() {
return item;
}
/**
* Sets the item value for this ArrayOfActiondatastruct.
*
* @param item
*/
public void setItem(com.allegro.webapi.ActionDataStruct[] item) {
this.item = item;
}
public com.allegro.webapi.ActionDataStruct getItem(int i) {
return this.item[i];
}
public void setItem(int i, com.allegro.webapi.ActionDataStruct _value) {
this.item[i] = _value;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof ArrayOfActiondatastruct)) return false;
ArrayOfActiondatastruct other = (ArrayOfActiondatastruct) 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