View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    * 
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   * 
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
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://commons.apache.org/'>Apache Commons Team</a>
26   * @version $Revision: 561314 $
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  }