1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.commons.betwixt.schema;
19
20 /***
21 * Models a simpleType tag in an XML schema.
22 * A simple type is an element that cannot have element content
23 * and which has no attributes.
24 *
25 * @author <a href='http://jakarta.apache.org/'>Jakarta Commons Team</a>
26 * @version $Revision: 438373 $
27 */
28 public class SimpleType {
29 private String name;
30
31 /***
32 * Gets the name
33 * @return the name of this type
34 */
35 public String getName() {
36 return name;
37 }
38
39 /***
40 * Sets the name
41 * @param name
42 */
43 public void setName(String name) {
44 this.name = name;
45 }
46
47 public boolean equals(Object obj) {
48 boolean result = false;
49 if (obj instanceof SimpleType) {
50 SimpleType simpleType = (SimpleType) obj;
51 result = isEqual(name, simpleType.name);
52 }
53 return result;
54 }
55
56 public int hashCode() {
57 return 0;
58 }
59
60
61 /***
62 * Null safe equals method
63 * @param one
64 * @param two
65 * @return
66 */
67 private boolean isEqual(String one, String two) {
68 boolean result = false;
69 if (one == null) {
70 result = (two == null);
71 }
72 else
73 {
74 result = one.equals(two);
75 }
76
77 return result;
78 }
79
80 public String toString() {
81 return "<xsd:simpleType name='" + name + "'/>";
82 }
83 }