Source Code Cross Referenced for MessageDef.java in  » ESB » cbesb-1.2 » com » bostechcorp » cbesb » etl » dataSourceMap » x10 » 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 » ESB » cbesb 1.2 » com.bostechcorp.cbesb.etl.dataSourceMap.x10 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * XML Type:  messageDef
003:         * Namespace: http://cbesb.bostechcorp.com/etl/dataSourceMap/1.0
004:         * Java type: com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef
005:         *
006:         * Automatically generated - do not modify.
007:         */
008:        package com.bostechcorp.cbesb.etl.dataSourceMap.x10;
009:
010:        /**
011:         * An XML messageDef(@http://cbesb.bostechcorp.com/etl/dataSourceMap/1.0).
012:         *
013:         * This is a complex type.
014:         */
015:        public interface MessageDef extends org.apache.xmlbeans.XmlObject {
016:            public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) schema.system.s5510FE91037BC1DD5EBCB28481B5B217.TypeSystemHolder.typeSystem
017:                    .resolveHandle("messagedef52e1type");
018:
019:            /**
020:             * Gets array of all "element" elements
021:             */
022:            com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef[] getElementArray();
023:
024:            /**
025:             * Gets ith "element" element
026:             */
027:            com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef getElementArray(
028:                    int i);
029:
030:            /**
031:             * Returns number of "element" element
032:             */
033:            int sizeOfElementArray();
034:
035:            /**
036:             * Sets array of all "element" element
037:             */
038:            void setElementArray(
039:                    com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef[] elementArray);
040:
041:            /**
042:             * Sets ith "element" element
043:             */
044:            void setElementArray(
045:                    int i,
046:                    com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef element);
047:
048:            /**
049:             * Inserts and returns a new empty value (as xml) as the ith "element" element
050:             */
051:            com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef insertNewElement(
052:                    int i);
053:
054:            /**
055:             * Appends and returns a new empty value (as xml) as the last "element" element
056:             */
057:            com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef addNewElement();
058:
059:            /**
060:             * Removes the ith "element" element
061:             */
062:            void removeElement(int i);
063:
064:            /**
065:             * Gets the "name" attribute
066:             */
067:            java.lang.String getName();
068:
069:            /**
070:             * Gets (as xml) the "name" attribute
071:             */
072:            org.apache.xmlbeans.XmlString xgetName();
073:
074:            /**
075:             * True if has "name" attribute
076:             */
077:            boolean isSetName();
078:
079:            /**
080:             * Sets the "name" attribute
081:             */
082:            void setName(java.lang.String name);
083:
084:            /**
085:             * Sets (as xml) the "name" attribute
086:             */
087:            void xsetName(org.apache.xmlbeans.XmlString name);
088:
089:            /**
090:             * Unsets the "name" attribute
091:             */
092:            void unsetName();
093:
094:            /**
095:             * Gets the "type" attribute
096:             */
097:            java.lang.String getType();
098:
099:            /**
100:             * Gets (as xml) the "type" attribute
101:             */
102:            org.apache.xmlbeans.XmlString xgetType();
103:
104:            /**
105:             * True if has "type" attribute
106:             */
107:            boolean isSetType();
108:
109:            /**
110:             * Sets the "type" attribute
111:             */
112:            void setType(java.lang.String type);
113:
114:            /**
115:             * Sets (as xml) the "type" attribute
116:             */
117:            void xsetType(org.apache.xmlbeans.XmlString type);
118:
119:            /**
120:             * Unsets the "type" attribute
121:             */
122:            void unsetType();
123:
124:            /**
125:             * A factory class with static methods for creating instances
126:             * of this type.
127:             */
128:
129:            public static final class Factory {
130:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef newInstance() {
131:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
132:                            .getContextTypeLoader().newInstance(type, null);
133:                }
134:
135:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef newInstance(
136:                        org.apache.xmlbeans.XmlOptions options) {
137:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
138:                            .getContextTypeLoader().newInstance(type, options);
139:                }
140:
141:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef parse(
142:                        java.lang.String s)
143:                        throws org.apache.xmlbeans.XmlException {
144:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
145:                            .getContextTypeLoader().parse(s, type, null);
146:                }
147:
148:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef parse(
149:                        java.lang.String s,
150:                        org.apache.xmlbeans.XmlOptions options)
151:                        throws org.apache.xmlbeans.XmlException {
152:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
153:                            .getContextTypeLoader().parse(s, type, options);
154:                }
155:
156:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef parse(
157:                        java.io.File f)
158:                        throws org.apache.xmlbeans.XmlException,
159:                        java.io.IOException {
160:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
161:                            .getContextTypeLoader().parse(f, type, null);
162:                }
163:
164:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef parse(
165:                        java.io.File f, org.apache.xmlbeans.XmlOptions options)
166:                        throws org.apache.xmlbeans.XmlException,
167:                        java.io.IOException {
168:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
169:                            .getContextTypeLoader().parse(f, type, options);
170:                }
171:
172:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef parse(
173:                        java.net.URL u)
174:                        throws org.apache.xmlbeans.XmlException,
175:                        java.io.IOException {
176:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
177:                            .getContextTypeLoader().parse(u, type, null);
178:                }
179:
180:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef parse(
181:                        java.net.URL u, org.apache.xmlbeans.XmlOptions options)
182:                        throws org.apache.xmlbeans.XmlException,
183:                        java.io.IOException {
184:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
185:                            .getContextTypeLoader().parse(u, type, options);
186:                }
187:
188:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef parse(
189:                        java.io.InputStream is)
190:                        throws org.apache.xmlbeans.XmlException,
191:                        java.io.IOException {
192:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
193:                            .getContextTypeLoader().parse(is, type, null);
194:                }
195:
196:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef parse(
197:                        java.io.InputStream is,
198:                        org.apache.xmlbeans.XmlOptions options)
199:                        throws org.apache.xmlbeans.XmlException,
200:                        java.io.IOException {
201:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
202:                            .getContextTypeLoader().parse(is, type, options);
203:                }
204:
205:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef parse(
206:                        java.io.Reader r)
207:                        throws org.apache.xmlbeans.XmlException,
208:                        java.io.IOException {
209:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
210:                            .getContextTypeLoader().parse(r, type, null);
211:                }
212:
213:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef parse(
214:                        java.io.Reader r, org.apache.xmlbeans.XmlOptions options)
215:                        throws org.apache.xmlbeans.XmlException,
216:                        java.io.IOException {
217:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
218:                            .getContextTypeLoader().parse(r, type, options);
219:                }
220:
221:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef parse(
222:                        org.w3c.dom.Node node)
223:                        throws org.apache.xmlbeans.XmlException {
224:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
225:                            .getContextTypeLoader().parse(node, type, null);
226:                }
227:
228:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef parse(
229:                        org.w3c.dom.Node node,
230:                        org.apache.xmlbeans.XmlOptions options)
231:                        throws org.apache.xmlbeans.XmlException {
232:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
233:                            .getContextTypeLoader().parse(node, type, options);
234:                }
235:
236:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef parse(
237:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis)
238:                        throws org.apache.xmlbeans.XmlException,
239:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
240:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
241:                            .getContextTypeLoader().parse(xis, type, null);
242:                }
243:
244:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef parse(
245:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis,
246:                        org.apache.xmlbeans.XmlOptions options)
247:                        throws org.apache.xmlbeans.XmlException,
248:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
249:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef) org.apache.xmlbeans.XmlBeans
250:                            .getContextTypeLoader().parse(xis, type, options);
251:                }
252:
253:                public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
254:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis)
255:                        throws org.apache.xmlbeans.XmlException,
256:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
257:                    return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
258:                            .newValidatingXMLInputStream(xis, type, null);
259:                }
260:
261:                public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
262:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis,
263:                        org.apache.xmlbeans.XmlOptions options)
264:                        throws org.apache.xmlbeans.XmlException,
265:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
266:                    return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
267:                            .newValidatingXMLInputStream(xis, type, options);
268:                }
269:
270:                private Factory() {
271:                } // No instance of this class allowed
272:            }
273:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.