Source Code Cross Referenced for Type.java in  » Database-ORM » castor » org » exolab » castor » xml » schema » simpletypes » factory » 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.simpletypes.factory 
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 1999-2000 (C) Intalio Inc. All Rights Reserved.
042:         *
043:         * $Id: Type.java 5951 2006-05-30 22:18:48Z bsnyder $
044:         */package org.exolab.castor.xml.schema.simpletypes.factory;
045:
046:        import java.util.Vector;
047:        import java.io.PrintWriter;
048:
049:        import org.exolab.castor.xml.schema.SimpleType;
050:
051:        /**
052:         * Stores information about an xml built in type.
053:         *
054:         */
055:        public class Type {
056:            /**
057:             * The name of the built in type
058:             */
059:            private String name = null;
060:
061:            /**
062:             * The code of the built in type
063:             * (name of the corresponding field in SimpleTypesFactory)
064:             */
065:            private String code = null;
066:
067:            /**
068:             * The name of the base type (null for primitive types)
069:             */
070:            private String base = null;
071:
072:            /**
073:             * The name of the implementing class
074:             * (in org.exolab.castor.xml.schema.simpletypes)
075:             */
076:            private String impl = null;
077:
078:            /**
079:             * The name of the derivation method.
080:             */
081:            private String derivedBy = null;
082:
083:            /**
084:             * The class used to represent this type
085:             */
086:            private Class implClass = null;
087:
088:            /**
089:             * The instance representing this type
090:             */
091:            private SimpleType simpleType = null;
092:
093:            /**
094:             * This type's properties ("facet" like)
095:             * Vector<TypeProperty>
096:             */
097:            private Vector facet = new Vector(15);
098:
099:            public String getName() {
100:                return name;
101:            }
102:
103:            public String getCode() {
104:                return code;
105:            }
106:
107:            public String getBase() {
108:                return base;
109:            }
110:
111:            public String getImpl() {
112:                return impl;
113:            }
114:
115:            public String getDerivedBy() {
116:                return derivedBy;
117:            }
118:
119:            public Vector getFacet() {
120:                return facet;
121:            }
122:
123:            public Class getImplClass() {
124:                return implClass;
125:            }
126:
127:            public SimpleType getSimpleType() {
128:                return simpleType;
129:            }
130:
131:            public void setName(String name) {
132:                this .name = name;
133:            }
134:
135:            public void setCode(String code) {
136:                this .code = code;
137:            }
138:
139:            public void setBase(String base) {
140:                this .base = base;
141:            }
142:
143:            public void setDerivedBy(String derivedBy) {
144:                this .derivedBy = derivedBy;
145:            }
146:
147:            public void setSimpleType(SimpleType simpleType) {
148:                this .simpleType = simpleType;
149:            }
150:
151:            /**
152:             * Sets the implementing class name
153:             * and tries to create the corresponding class in the package
154:             * org.exolab.castor.xml.schema.simpletypes
155:             */
156:            public void setImpl(String impl) {
157:                this .impl = impl;
158:                try {
159:                    String fullName = "org.exolab.castor.xml.schema.simpletypes."
160:                            + impl;
161:                    implClass = Class.forName(fullName);
162:                } catch (Exception e) {
163:                    implClass = null;
164:                }
165:            }
166:
167:            /**
168:             * Prints this instance's content
169:             */
170:            public void Print(PrintWriter output) {
171:                output.println("name: " + name + " code: " + code + " base: "
172:                        + base + " impl: " + impl + " derivedBy: " + derivedBy);
173:                output.println("Facets count: " + facet.size());
174:
175:                for (int index = 0; index < facet.size(); index++) {
176:                    ((TypeProperty) (facet.elementAt(index))).Print(output);
177:                }
178:                output.println();
179:            }
180:        }
ww__w___.__ja__v__a__2___s___.__c__o___m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.