01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * 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: import java.beans.IntrospectionException;
21:
22: import org.apache.commons.betwixt.ElementDescriptor;
23:
24: /**
25: * @author <a href='http://jakarta.apache.org/'>Jakarta Commons Team</a>
26: * @version $Revision: 438373 $
27: */
28: public class SimpleLocalElement extends LocalElement {
29:
30: private String type;
31:
32: public SimpleLocalElement(String name, String type) {
33: super (name);
34: setType(type);
35: }
36:
37: public SimpleLocalElement(TranscriptionConfiguration configuration,
38: ElementDescriptor descriptor, Schema schema)
39: throws IntrospectionException {
40: super (descriptor, schema);
41: setType(configuration.getDataTypeMapper().toXMLSchemaDataType(
42: descriptor.getPropertyType()));
43: }
44:
45: public String getType() {
46: return type;
47: }
48:
49: public void setType(String string) {
50: type = string;
51: }
52:
53: public int hashCode() {
54: return getName().hashCode();
55: }
56:
57: public boolean equals(Object obj) {
58: boolean result = false;
59: if (obj instanceof SimpleLocalElement) {
60: SimpleLocalElement simpleLocalElement = (SimpleLocalElement) obj;
61: result = isEqual(getName(), simpleLocalElement.getName())
62: && isEqual(getType(), simpleLocalElement.getType());
63: }
64: return result;
65: }
66:
67: private boolean isEqual(String one, String two) {
68: if (one == null) {
69: return (two == null);
70: }
71:
72: return one.equals(two);
73: }
74:
75: public String toString() {
76: StringBuffer buffer = new StringBuffer();
77: buffer.append("<element name='");
78: buffer.append(getName());
79: buffer.append("' type='");
80: buffer.append(getType());
81: buffer.append("'/>");
82: return buffer.toString();
83: }
84: }
|