1
2
3
4
5
6
7
8 package org.mobot;
9
10 public class ArrayOfTitle implements java.io.Serializable {
11 private org.mobot.Title[] title;
12
13 public ArrayOfTitle() {
14 }
15
16 public ArrayOfTitle(
17 org.mobot.Title[] title) {
18 this.title = title;
19 }
20
21
22
23
24
25
26
27 public org.mobot.Title[] getTitle() {
28 return title;
29 }
30
31
32
33
34
35
36
37 public void setTitle(org.mobot.Title[] title) {
38 this.title = title;
39 }
40
41 public org.mobot.Title getTitle(int i) {
42 return this.title[i];
43 }
44
45 public void setTitle(int i, org.mobot.Title _value) {
46 this.title[i] = _value;
47 }
48
49 private java.lang.Object __equalsCalc = null;
50 public synchronized boolean equals(java.lang.Object obj) {
51 if (!(obj instanceof ArrayOfTitle)) return false;
52 ArrayOfTitle other = (ArrayOfTitle) obj;
53 if (obj == null) return false;
54 if (this == obj) return true;
55 if (__equalsCalc != null) {
56 return (__equalsCalc == obj);
57 }
58 __equalsCalc = obj;
59 boolean _equals;
60 _equals = true &&
61 ((this.title==null && other.getTitle()==null) ||
62 (this.title!=null &&
63 java.util.Arrays.equals(this.title, other.getTitle())));
64 __equalsCalc = null;
65 return _equals;
66 }
67
68 private boolean __hashCodeCalc = false;
69 public synchronized int hashCode() {
70 if (__hashCodeCalc) {
71 return 0;
72 }
73 __hashCodeCalc = true;
74 int _hashCode = 1;
75 if (getTitle() != null) {
76 for (int i=0;
77 i<java.lang.reflect.Array.getLength(getTitle());
78 i++) {
79 java.lang.Object obj = java.lang.reflect.Array.get(getTitle(), i);
80 if (obj != null &&
81 !obj.getClass().isArray()) {
82 _hashCode += obj.hashCode();
83 }
84 }
85 }
86 __hashCodeCalc = false;
87 return _hashCode;
88 }
89
90
91 private static org.apache.axis.description.TypeDesc typeDesc =
92 new org.apache.axis.description.TypeDesc(ArrayOfTitle.class, true);
93
94 static {
95 typeDesc.setXmlType(new javax.xml.namespace.QName("http://mobot.org/", "ArrayOfTitle"));
96 org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
97 elemField.setFieldName("title");
98 elemField.setXmlName(new javax.xml.namespace.QName("http://mobot.org/", "Title"));
99 elemField.setXmlType(new javax.xml.namespace.QName("http://mobot.org/", "Title"));
100 elemField.setMinOccurs(0);
101 elemField.setNillable(true);
102 elemField.setMaxOccursUnbounded(true);
103 typeDesc.addFieldDesc(elemField);
104 }
105
106
107
108
109 public static org.apache.axis.description.TypeDesc getTypeDesc() {
110 return typeDesc;
111 }
112
113
114
115
116 public static org.apache.axis.encoding.Serializer getSerializer(
117 java.lang.String mechType,
118 java.lang.Class _javaType,
119 javax.xml.namespace.QName _xmlType) {
120 return
121 new org.apache.axis.encoding.ser.BeanSerializer(
122 _javaType, _xmlType, typeDesc);
123 }
124
125
126
127
128 public static org.apache.axis.encoding.Deserializer getDeserializer(
129 java.lang.String mechType,
130 java.lang.Class _javaType,
131 javax.xml.namespace.QName _xmlType) {
132 return
133 new org.apache.axis.encoding.ser.BeanDeserializer(
134 _javaType, _xmlType, typeDesc);
135 }
136
137 }