Coverage Report - com.buckosoft.PicMan.PicManService.PicFilterSOAP
 
Classes in this File Line Coverage Branch Coverage Complexity
PicFilterSOAP
0%
0/82
0%
0/44
2.733
 
 1  
 /**
 2  
  * PicFilterSOAP.java
 3  
  *
 4  
  * This file was auto-generated from WSDL
 5  
  * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
 6  
  */
 7  
 
 8  
 package com.buckosoft.PicMan.PicManService;
 9  
 
 10  
 public class PicFilterSOAP  implements java.io.Serializable {
 11  
         private static final long serialVersionUID = 1L;
 12  
 
 13  
         private java.lang.String picName;
 14  
 
 15  
     private java.util.Calendar timeStamp;
 16  
 
 17  
     private java.lang.String setName;
 18  
 
 19  
     private int value;
 20  
 
 21  0
     public PicFilterSOAP() {
 22  0
     }
 23  
 
 24  
     public PicFilterSOAP(
 25  
            java.lang.String picName,
 26  
            java.util.Calendar timeStamp,
 27  
            java.lang.String setName,
 28  0
            int value) {
 29  0
            this.picName = picName;
 30  0
            this.timeStamp = timeStamp;
 31  0
            this.setName = setName;
 32  0
            this.value = value;
 33  0
     }
 34  
 
 35  
 
 36  
     /**
 37  
      * Gets the picName value for this PicFilterSOAP.
 38  
      * 
 39  
      * @return picName
 40  
      */
 41  
     public java.lang.String getPicName() {
 42  0
         return picName;
 43  
     }
 44  
 
 45  
 
 46  
     /**
 47  
      * Sets the picName value for this PicFilterSOAP.
 48  
      * 
 49  
      * @param picName
 50  
      */
 51  
     public void setPicName(java.lang.String picName) {
 52  0
         this.picName = picName;
 53  0
     }
 54  
 
 55  
 
 56  
     /**
 57  
      * Gets the timeStamp value for this PicFilterSOAP.
 58  
      * 
 59  
      * @return timeStamp
 60  
      */
 61  
     public java.util.Calendar getTimeStamp() {
 62  0
         return timeStamp;
 63  
     }
 64  
 
 65  
 
 66  
     /**
 67  
      * Sets the timeStamp value for this PicFilterSOAP.
 68  
      * 
 69  
      * @param timeStamp
 70  
      */
 71  
     public void setTimeStamp(java.util.Calendar timeStamp) {
 72  0
         this.timeStamp = timeStamp;
 73  0
     }
 74  
 
 75  
 
 76  
     /**
 77  
      * Gets the setName value for this PicFilterSOAP.
 78  
      * 
 79  
      * @return setName
 80  
      */
 81  
     public java.lang.String getSetName() {
 82  0
         return setName;
 83  
     }
 84  
 
 85  
 
 86  
     /**
 87  
      * Sets the setName value for this PicFilterSOAP.
 88  
      * 
 89  
      * @param setName
 90  
      */
 91  
     public void setSetName(java.lang.String setName) {
 92  0
         this.setName = setName;
 93  0
     }
 94  
 
 95  
 
 96  
     /**
 97  
      * Gets the value value for this PicFilterSOAP.
 98  
      * 
 99  
      * @return value
 100  
      */
 101  
     public int getValue() {
 102  0
         return value;
 103  
     }
 104  
 
 105  
 
 106  
     /**
 107  
      * Sets the value value for this PicFilterSOAP.
 108  
      * 
 109  
      * @param value
 110  
      */
 111  
     public void setValue(int value) {
 112  0
         this.value = value;
 113  0
     }
 114  
 
 115  0
     private java.lang.Object __equalsCalc = null;
 116  
     public synchronized boolean equals(java.lang.Object obj) {
 117  0
         if (!(obj instanceof PicFilterSOAP)) return false;
 118  0
         PicFilterSOAP other = (PicFilterSOAP) obj;
 119  0
         if (obj == null) return false;
 120  0
         if (this == obj) return true;
 121  0
         if (__equalsCalc != null) {
 122  0
             return (__equalsCalc == obj);
 123  
         }
 124  0
         __equalsCalc = obj;
 125  
         boolean _equals;
 126  0
         _equals = true && 
 127  0
             ((this.picName==null && other.getPicName()==null) || 
 128  
              (this.picName!=null &&
 129  0
               this.picName.equals(other.getPicName()))) &&
 130  0
             ((this.timeStamp==null && other.getTimeStamp()==null) || 
 131  
              (this.timeStamp!=null &&
 132  0
               this.timeStamp.equals(other.getTimeStamp()))) &&
 133  0
             ((this.setName==null && other.getSetName()==null) || 
 134  
              (this.setName!=null &&
 135  0
               this.setName.equals(other.getSetName()))) &&
 136  0
             this.value == other.getValue();
 137  0
         __equalsCalc = null;
 138  0
         return _equals;
 139  
     }
 140  
 
 141  0
     private boolean __hashCodeCalc = false;
 142  
     public synchronized int hashCode() {
 143  0
         if (__hashCodeCalc) {
 144  0
             return 0;
 145  
         }
 146  0
         __hashCodeCalc = true;
 147  0
         int _hashCode = 1;
 148  0
         if (getPicName() != null) {
 149  0
             _hashCode += getPicName().hashCode();
 150  
         }
 151  0
         if (getTimeStamp() != null) {
 152  0
             _hashCode += getTimeStamp().hashCode();
 153  
         }
 154  0
         if (getSetName() != null) {
 155  0
             _hashCode += getSetName().hashCode();
 156  
         }
 157  0
         _hashCode += getValue();
 158  0
         __hashCodeCalc = false;
 159  0
         return _hashCode;
 160  
     }
 161  
 
 162  
     // Type metadata
 163  0
     private static org.apache.axis.description.TypeDesc typeDesc =
 164  
         new org.apache.axis.description.TypeDesc(PicFilterSOAP.class, true);
 165  
 
 166  
     static {
 167  0
         typeDesc.setXmlType(new javax.xml.namespace.QName("http://PicMan.buckosoft.com/PicManService/", "PicFilterSOAP"));
 168  0
         org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
 169  0
         elemField.setFieldName("picName");
 170  0
         elemField.setXmlName(new javax.xml.namespace.QName("", "picName"));
 171  0
         elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
 172  0
         elemField.setNillable(false);
 173  0
         typeDesc.addFieldDesc(elemField);
 174  0
         elemField = new org.apache.axis.description.ElementDesc();
 175  0
         elemField.setFieldName("timeStamp");
 176  0
         elemField.setXmlName(new javax.xml.namespace.QName("", "timeStamp"));
 177  0
         elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"));
 178  0
         elemField.setNillable(false);
 179  0
         typeDesc.addFieldDesc(elemField);
 180  0
         elemField = new org.apache.axis.description.ElementDesc();
 181  0
         elemField.setFieldName("setName");
 182  0
         elemField.setXmlName(new javax.xml.namespace.QName("", "setName"));
 183  0
         elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
 184  0
         elemField.setNillable(false);
 185  0
         typeDesc.addFieldDesc(elemField);
 186  0
         elemField = new org.apache.axis.description.ElementDesc();
 187  0
         elemField.setFieldName("value");
 188  0
         elemField.setXmlName(new javax.xml.namespace.QName("", "value"));
 189  0
         elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
 190  0
         elemField.setNillable(false);
 191  0
         typeDesc.addFieldDesc(elemField);
 192  0
     }
 193  
 
 194  
     /**
 195  
      * Return type metadata object
 196  
      */
 197  
     public static org.apache.axis.description.TypeDesc getTypeDesc() {
 198  0
         return typeDesc;
 199  
     }
 200  
 
 201  
     /**
 202  
      * Get Custom Serializer
 203  
      */
 204  
     public static org.apache.axis.encoding.Serializer getSerializer(
 205  
            java.lang.String mechType, 
 206  
            @SuppressWarnings("rawtypes") java.lang.Class _javaType,  
 207  
            javax.xml.namespace.QName _xmlType) {
 208  0
         return 
 209  
           new  org.apache.axis.encoding.ser.BeanSerializer(
 210  
             _javaType, _xmlType, typeDesc);
 211  
     }
 212  
 
 213  
     /**
 214  
      * Get Custom Deserializer
 215  
      */
 216  
     public static org.apache.axis.encoding.Deserializer getDeserializer(
 217  
            java.lang.String mechType, 
 218  
            @SuppressWarnings("rawtypes") java.lang.Class _javaType,  
 219  
            javax.xml.namespace.QName _xmlType) {
 220  0
         return 
 221  
           new  org.apache.axis.encoding.ser.BeanDeserializer(
 222  
             _javaType, _xmlType, typeDesc);
 223  
     }
 224  
 
 225  
 }