Project

General

Profile

1
/**
2
 * FileNotFoundException.java
3
 *
4
 * This file was auto-generated from WSDL
5
 * by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter.
6
 */
7

    
8
package edu.ucsb.nceas.shared.xsd;
9

    
10
public class FileNotFoundException  extends edu.ucsb.nceas.shared.xsd.IOException  implements java.io.Serializable {
11

    
12
	private static final long serialVersionUID = -9077623505512220104L;
13
	
14
	public FileNotFoundException() {
15
    }
16

    
17
    public FileNotFoundException(
18
           java.lang.Object exception) {
19
        super(
20
            exception);
21
    }
22

    
23
    private java.lang.Object __equalsCalc = null;
24
    public synchronized boolean equals(java.lang.Object obj) {
25
        if (!(obj instanceof FileNotFoundException)) return false;
26
        FileNotFoundException other = (FileNotFoundException) obj;
27
        if (obj == null) return false;
28
        if (this == obj) return true;
29
        if (__equalsCalc != null) {
30
            return (__equalsCalc == obj);
31
        }
32
        __equalsCalc = obj;
33
        boolean _equals;
34
        _equals = super.equals(obj);
35
        __equalsCalc = null;
36
        return _equals;
37
    }
38

    
39
    private boolean __hashCodeCalc = false;
40
    public synchronized int hashCode() {
41
        if (__hashCodeCalc) {
42
            return 0;
43
        }
44
        __hashCodeCalc = true;
45
        int _hashCode = super.hashCode();
46
        __hashCodeCalc = false;
47
        return _hashCode;
48
    }
49

    
50
    // Type metadata
51
    private static org.apache.axis.description.TypeDesc typeDesc =
52
        new org.apache.axis.description.TypeDesc(FileNotFoundException.class, true);
53

    
54
    static {
55
        typeDesc.setXmlType(new javax.xml.namespace.QName("http://io.java/xsd", "FileNotFoundException"));
56
    }
57

    
58
    /**
59
     * Return type metadata object
60
     */
61
    public static org.apache.axis.description.TypeDesc getTypeDesc() {
62
        return typeDesc;
63
    }
64

    
65
    /**
66
     * Get Custom Serializer
67
     */
68
    public static org.apache.axis.encoding.Serializer getSerializer(
69
           java.lang.String mechType, 
70
           java.lang.Class _javaType,  
71
           javax.xml.namespace.QName _xmlType) {
72
        return 
73
          new  org.apache.axis.encoding.ser.BeanSerializer(
74
            _javaType, _xmlType, typeDesc);
75
    }
76

    
77
    /**
78
     * Get Custom Deserializer
79
     */
80
    public static org.apache.axis.encoding.Deserializer getDeserializer(
81
           java.lang.String mechType, 
82
           java.lang.Class _javaType,  
83
           javax.xml.namespace.QName _xmlType) {
84
        return 
85
          new  org.apache.axis.encoding.ser.BeanDeserializer(
86
            _javaType, _xmlType, typeDesc);
87
    }
88

    
89
}
(1-1/2)