All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hudson.plugins.sfee.webservice.DocumentReviewSoapList Maven / Gradle / Ivy

Go to download

This plugin integrates Hudson with a Source Forge Enterprise Edition (SFEE) Server

There is a newer version: 1.0.4
Show newest version
/**
 * DocumentReviewSoapList.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
 */

package hudson.plugins.sfee.webservice;

public class DocumentReviewSoapList  implements java.io.Serializable {
    private hudson.plugins.sfee.webservice.DocumentReviewSoapRow[] dataRows;

    public DocumentReviewSoapList() {
    }

    public DocumentReviewSoapList(
           hudson.plugins.sfee.webservice.DocumentReviewSoapRow[] dataRows) {
           this.dataRows = dataRows;
    }


    /**
     * Gets the dataRows value for this DocumentReviewSoapList.
     * 
     * @return dataRows
     */
    public hudson.plugins.sfee.webservice.DocumentReviewSoapRow[] getDataRows() {
        return dataRows;
    }


    /**
     * Sets the dataRows value for this DocumentReviewSoapList.
     * 
     * @param dataRows
     */
    public void setDataRows(hudson.plugins.sfee.webservice.DocumentReviewSoapRow[] dataRows) {
        this.dataRows = dataRows;
    }

    private java.lang.Object __equalsCalc = null;
    public synchronized boolean equals(java.lang.Object obj) {
        if (!(obj instanceof DocumentReviewSoapList)) return false;
        DocumentReviewSoapList other = (DocumentReviewSoapList) obj;
        if (obj == null) return false;
        if (this == obj) return true;
        if (__equalsCalc != null) {
            return (__equalsCalc == obj);
        }
        __equalsCalc = obj;
        boolean _equals;
        _equals = true && 
            ((this.dataRows==null && other.getDataRows()==null) || 
             (this.dataRows!=null &&
              java.util.Arrays.equals(this.dataRows, other.getDataRows())));
        __equalsCalc = null;
        return _equals;
    }

    private boolean __hashCodeCalc = false;
    public synchronized int hashCode() {
        if (__hashCodeCalc) {
            return 0;
        }
        __hashCodeCalc = true;
        int _hashCode = 1;
        if (getDataRows() != null) {
            for (int i=0;
                 i




© 2015 - 2025 Weber Informatics LLC | Privacy Policy