Source Code Cross Referenced for SimpleTypeDefinition.java in  » Database-ORM » castor » org » exolab » castor » xml » schema » reader » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database ORM » castor » org.exolab.castor.xml.schema.reader 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * Redistribution and use of this software and associated documentation
003:         * ("Software"), with or without modification, are permitted provided
004:         * that the following conditions are met:
005:         *
006:         * 1. Redistributions of source code must retain copyright
007:         *    statements and notices.  Redistributions must also contain a
008:         *    copy of this document.
009:         *
010:         * 2. Redistributions in binary form must reproduce the
011:         *    above copyright notice, this list of conditions and the
012:         *    following disclaimer in the documentation and/or other
013:         *    materials provided with the distribution.
014:         *
015:         * 3. The name "Exolab" must not be used to endorse or promote
016:         *    products derived from this Software without prior written
017:         *    permission of Intalio, Inc.  For written permission,
018:         *    please contact info@exolab.org.
019:         *
020:         * 4. Products derived from this Software may not be called "Exolab"
021:         *    nor may "Exolab" appear in their names without prior written
022:         *    permission of Intalio, Inc. Exolab is a registered
023:         *    trademark of Intalio, Inc.
024:         *
025:         * 5. Due credit should be given to the Exolab Project
026:         *    (http://www.exolab.org/).
027:         *
028:         * THIS SOFTWARE IS PROVIDED BY INTALIO, INC. AND CONTRIBUTORS
029:         * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
030:         * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
031:         * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
032:         * INTALIO, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
033:         * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
034:         * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
035:         * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
036:         * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
037:         * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
038:         * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
039:         * OF THE POSSIBILITY OF SUCH DAMAGE.
040:         *
041:         * Copyright 2000 (C) Intalio Inc. All Rights Reserved.
042:         *
043:         * $Id: SimpleTypeDefinition.java 6230 2006-09-19 07:56:07Z wguttmn $
044:         */package org.exolab.castor.xml.schema.reader;
045:
046:        import org.exolab.castor.xml.schema.*;
047:        import org.exolab.castor.xml.schema.simpletypes.UrType;
048:
049:        import java.util.Enumeration;
050:
051:        /**
052:         * A simple class used when unmarshalling simpleTypes
053:         *
054:         * @author <a href="mailto:kvisco@intalio.com">Keith Visco</a>
055:         * @version $Revision: 6230 $ $Date: 2004-10-01 07:25:46 -0600 (Fri, 01 Oct 2004) $
056:         **/
057:        class SimpleTypeDefinition {
058:
059:            private String _name = null;
060:            private String _id = null;
061:            private String _final = null;
062:            private Schema _schema = null;
063:            private SimpleType _baseType = null;
064:            private String _baseTypeName = null;
065:            private Annotation _annotation = null;
066:            private FacetList _facets = null;
067:
068:            SimpleTypeDefinition(Schema schema, String name, String id) {
069:                super ();
070:                this ._schema = schema;
071:                this ._name = name;
072:                this ._id = id;
073:
074:                _facets = new FacetList();
075:
076:            } //-- SimpleTypeDefinition
077:
078:            /**
079:             * Adds the given Facet to the list of Facets for this 
080:             * SimpleTypeDefinition
081:             *
082:             * @param facet the Facet to add
083:             **/
084:            public void addFacet(Facet facet) {
085:                _facets.add(facet);
086:            } //-- addFacet
087:
088:            /**
089:             * Copies the name, facets and annotations of this SimpleTypeDefinition
090:             * into the given SimpleType.
091:             *
092:             * @param simpleType the SimpleType to copy into.
093:             **/
094:            void copyInto(SimpleType simpleType) {
095:
096:                //-- set name
097:                simpleType.setName(_name);
098:
099:                //-- set Schema
100:                simpleType.setSchema(_schema);
101:
102:                //-- @id
103:                simpleType.setId(_id);
104:
105:                //-- @final
106:                simpleType.setFinal(_final);
107:
108:                //-- copy Facets
109:                Enumeration enumeration = _facets.enumerate();
110:                while (enumeration.hasMoreElements())
111:                    simpleType.addFacet((Facet) enumeration.nextElement());
112:
113:                if (_annotation != null)
114:                    simpleType.addAnnotation(_annotation);
115:            } //-- copyInto
116:
117:            /**
118:             * Creates the SimpleType instance which represents this 
119:             * SimpleTypeDefinition
120:             *
121:             * @return the new SimpleType instance.
122:             **/
123:            SimpleType createSimpleType() {
124:                SimpleType simpleType = null;
125:
126:                if (_baseType != null)
127:                    simpleType = _schema.createSimpleType(_name, _baseType);
128:                else if (_baseTypeName != null)
129:                    simpleType = _schema.createSimpleType(_name, _baseTypeName,
130:                            "restriction");
131:                else {
132:                    simpleType = new UrType();
133:                }
134:
135:                //-- @id
136:                simpleType.setId(_id);
137:
138:                //-- @final
139:                simpleType.setFinal(_final);
140:
141:                //-- copy Facets
142:                Enumeration enumeration = _facets.enumerate();
143:                while (enumeration.hasMoreElements())
144:                    simpleType.addFacet((Facet) enumeration.nextElement());
145:
146:                if (_annotation != null)
147:                    simpleType.addAnnotation(_annotation);
148:
149:                return simpleType;
150:
151:            } //-- createSimpleType
152:
153:            /**
154:             * Returns the Schema for this SimpleTypeDefinition
155:             *
156:             * @return the Schema for this SimpleTypeDefinition
157:             **/
158:            Schema getSchema() {
159:                return _schema;
160:            } //-- getSchema
161:
162:            /**
163:             * Sets the annotation for this SimpleTypeDefinition
164:             *
165:             * @param annotation the Annotation for this SimpleTypeDefinition
166:             **/
167:            void setAnnotation(Annotation annotation) {
168:                _annotation = annotation;
169:            } //-- setAnnotation
170:
171:            /**
172:             * Sets the base type for this SimpleTypeDefinition. This
173:             * method is mutually exclusive with #setBaseTypeName
174:             * 
175:             * @param baseType the base type for this SimpleTypeDefinition
176:             **/
177:            void setBaseType(SimpleType baseType) {
178:                _baseType = baseType;
179:                _baseTypeName = null;
180:            } //-- setBaseType
181:
182:            /**
183:             * Sets the base type for this SimpleTypeDefinition. This
184:             * method is mutually exclusive with #setBaseType
185:             * 
186:             * @param baseTypeName the base type for this SimpleTypeDefinition
187:             **/
188:            void setBaseTypeName(String baseTypeName) {
189:                _baseTypeName = baseTypeName;
190:                _baseType = null;
191:            } //-- setBaseTypeName
192:
193:            /**
194:             * Sets the value of the 'final' property, indicating which
195:             * types of derivation are not allowed. A null value will indicate
196:             * all types of derivation (list, restriction, union) are allowed.
197:             *
198:             * @param finalValue the value of the final property.
199:             **/
200:            void setFinal(String finalValue) {
201:                _final = finalValue;
202:            }
203:
204:        } //-- SimpleTypeDefinition
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.