CAS Unit Tests
Clover coverage report - CAS Unit Tests
Coverage timestamp: Mon Jul 4 2005 18:13:17 CDT
file stats: LOC: 81   Methods: 6
NCLOC: 54   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
VoidType.java 0% 0% 0% 0%
coverage
 1    /**
 2    * VoidType.java
 3    *
 4    * This file was auto-generated from WSDL
 5    * by the Apache Axis 1.2RC2 Jun 16, 2005 (10:54:53 EDT) WSDL2Java emitter.
 6    */
 7   
 8    package org.globus.cas.types;
 9   
 10    public class VoidType implements java.io.Serializable {
 11   
 12  0 public VoidType() {
 13    }
 14   
 15    private java.lang.Object __equalsCalc = null;
 16  0 public synchronized boolean equals(java.lang.Object obj) {
 17  0 if (!(obj instanceof VoidType)) return false;
 18  0 VoidType other = (VoidType) obj;
 19  0 if (obj == null) return false;
 20  0 if (this == obj) return true;
 21  0 if (__equalsCalc != null) {
 22  0 return (__equalsCalc == obj);
 23    }
 24  0 __equalsCalc = obj;
 25  0 boolean _equals;
 26  0 _equals = true;
 27  0 __equalsCalc = null;
 28  0 return _equals;
 29    }
 30   
 31    private boolean __hashCodeCalc = false;
 32  0 public synchronized int hashCode() {
 33  0 if (__hashCodeCalc) {
 34  0 return 0;
 35    }
 36  0 __hashCodeCalc = true;
 37  0 int _hashCode = 1;
 38  0 __hashCodeCalc = false;
 39  0 return _hashCode;
 40    }
 41   
 42    // Type metadata
 43    private static org.apache.axis.description.TypeDesc typeDesc =
 44    new org.apache.axis.description.TypeDesc(VoidType.class, true);
 45   
 46    static {
 47  0 typeDesc.setXmlType(new javax.xml.namespace.QName("http://www.globus.org/07/2004/cas/casTypes", "voidType"));
 48    }
 49   
 50    /**
 51    * Return type metadata object
 52    */
 53  0 public static org.apache.axis.description.TypeDesc getTypeDesc() {
 54  0 return typeDesc;
 55    }
 56   
 57    /**
 58    * Get Custom Serializer
 59    */
 60  0 public static org.apache.axis.encoding.Serializer getSerializer(
 61    java.lang.String mechType,
 62    java.lang.Class _javaType,
 63    javax.xml.namespace.QName _xmlType) {
 64  0 return
 65    new org.apache.axis.encoding.ser.BeanSerializer(
 66    _javaType, _xmlType, typeDesc);
 67    }
 68   
 69    /**
 70    * Get Custom Deserializer
 71    */
 72  0 public static org.apache.axis.encoding.Deserializer getDeserializer(
 73    java.lang.String mechType,
 74    java.lang.Class _javaType,
 75    javax.xml.namespace.QName _xmlType) {
 76  0 return
 77    new org.apache.axis.encoding.ser.BeanDeserializer(
 78    _javaType, _xmlType, typeDesc);
 79    }
 80   
 81    }