/** * GW__RpcListEntry.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__RpcListEntry implements java.io.Serializable { private java.lang.String name; private gw.GW__RpcParameterListEntry[] parameters; private java.lang.String returnType; public GW__RpcListEntry() { } public GW__RpcListEntry( java.lang.String name, gw.GW__RpcParameterListEntry[] parameters, java.lang.String returnType) { this.name = name; this.parameters = parameters; this.returnType = returnType; } /** * Gets the name value for this GW__RpcListEntry. * * @return name */ public java.lang.String getName() { return name; } /** * Sets the name value for this GW__RpcListEntry. * * @param name */ public void setName(java.lang.String name) { this.name = name; } /** * Gets the parameters value for this GW__RpcListEntry. * * @return parameters */ public gw.GW__RpcParameterListEntry[] getParameters() { return parameters; } /** * Sets the parameters value for this GW__RpcListEntry. * * @param parameters */ public void setParameters(gw.GW__RpcParameterListEntry[] parameters) { this.parameters = parameters; } /** * Gets the returnType value for this GW__RpcListEntry. * * @return returnType */ public java.lang.String getReturnType() { return returnType; } /** * Sets the returnType value for this GW__RpcListEntry. * * @param returnType */ public void setReturnType(java.lang.String returnType) { this.returnType = returnType; } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof GW__RpcListEntry)) return false; GW__RpcListEntry other = (GW__RpcListEntry) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = true && ((this.name==null && other.getName()==null) || (this.name!=null && this.name.equals(other.getName()))) && ((this.parameters==null && other.getParameters()==null) || (this.parameters!=null && java.util.Arrays.equals(this.parameters, other.getParameters()))) && ((this.returnType==null && other.getReturnType()==null) || (this.returnType!=null && this.returnType.equals(other.getReturnType()))); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; public synchronized int hashCode() { if (__hashCodeCalc) { return 0; } __hashCodeCalc = true; int _hashCode = 1; if (getName() != null) { _hashCode += getName().hashCode(); } if (getParameters() != null) { for (int i=0; i