/** * GW__eventsList_Result.java * * This file was auto-generated from WSDL * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter. */ package gw; public class GW__eventsList_Result implements java.io.Serializable { private java.lang.String appId; private gw.GW__EventListEntry[] events; public GW__eventsList_Result() { } public GW__eventsList_Result( java.lang.String appId, gw.GW__EventListEntry[] events) { this.appId = appId; this.events = events; } /** * Gets the appId value for this GW__eventsList_Result. * * @return appId */ public java.lang.String getAppId() { return appId; } /** * Sets the appId value for this GW__eventsList_Result. * * @param appId */ public void setAppId(java.lang.String appId) { this.appId = appId; } /** * Gets the events value for this GW__eventsList_Result. * * @return events */ public gw.GW__EventListEntry[] getEvents() { return events; } /** * Sets the events value for this GW__eventsList_Result. * * @param events */ public void setEvents(gw.GW__EventListEntry[] events) { this.events = events; } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof GW__eventsList_Result)) return false; GW__eventsList_Result other = (GW__eventsList_Result) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = true && ((this.appId==null && other.getAppId()==null) || (this.appId!=null && this.appId.equals(other.getAppId()))) && ((this.events==null && other.getEvents()==null) || (this.events!=null && java.util.Arrays.equals(this.events, other.getEvents()))); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; public synchronized int hashCode() { if (__hashCodeCalc) { return 0; } __hashCodeCalc = true; int _hashCode = 1; if (getAppId() != null) { _hashCode += getAppId().hashCode(); } if (getEvents() != null) { for (int i=0; i