Source Code Cross Referenced for ElementDef.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:  elementDef
003:         * Namespace: http://cbesb.bostechcorp.com/etl/dataSourceMap/1.0
004:         * Java type: com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef
005:         *
006:         * Automatically generated - do not modify.
007:         */
008:        package com.bostechcorp.cbesb.etl.dataSourceMap.x10;
009:
010:        /**
011:         * An XML elementDef(@http://cbesb.bostechcorp.com/etl/dataSourceMap/1.0).
012:         *
013:         * This is a complex type.
014:         */
015:        public interface ElementDef 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("elementdef8816type");
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:             * Sets the "name" attribute
076:             */
077:            void setName(java.lang.String name);
078:
079:            /**
080:             * Sets (as xml) the "name" attribute
081:             */
082:            void xsetName(org.apache.xmlbeans.XmlString name);
083:
084:            /**
085:             * Gets the "type" attribute
086:             */
087:            java.lang.String getType();
088:
089:            /**
090:             * Gets (as xml) the "type" attribute
091:             */
092:            org.apache.xmlbeans.XmlString xgetType();
093:
094:            /**
095:             * Sets the "type" attribute
096:             */
097:            void setType(java.lang.String type);
098:
099:            /**
100:             * Sets (as xml) the "type" attribute
101:             */
102:            void xsetType(org.apache.xmlbeans.XmlString type);
103:
104:            /**
105:             * Gets the "map" attribute
106:             */
107:            java.lang.String getMap();
108:
109:            /**
110:             * Gets (as xml) the "map" attribute
111:             */
112:            org.apache.xmlbeans.XmlString xgetMap();
113:
114:            /**
115:             * True if has "map" attribute
116:             */
117:            boolean isSetMap();
118:
119:            /**
120:             * Sets the "map" attribute
121:             */
122:            void setMap(java.lang.String map);
123:
124:            /**
125:             * Sets (as xml) the "map" attribute
126:             */
127:            void xsetMap(org.apache.xmlbeans.XmlString map);
128:
129:            /**
130:             * Unsets the "map" attribute
131:             */
132:            void unsetMap();
133:
134:            /**
135:             * Gets the "checkFlag" attribute
136:             */
137:            boolean getCheckFlag();
138:
139:            /**
140:             * Gets (as xml) the "checkFlag" attribute
141:             */
142:            org.apache.xmlbeans.XmlBoolean xgetCheckFlag();
143:
144:            /**
145:             * True if has "checkFlag" attribute
146:             */
147:            boolean isSetCheckFlag();
148:
149:            /**
150:             * Sets the "checkFlag" attribute
151:             */
152:            void setCheckFlag(boolean checkFlag);
153:
154:            /**
155:             * Sets (as xml) the "checkFlag" attribute
156:             */
157:            void xsetCheckFlag(org.apache.xmlbeans.XmlBoolean checkFlag);
158:
159:            /**
160:             * Unsets the "checkFlag" attribute
161:             */
162:            void unsetCheckFlag();
163:
164:            /**
165:             * Gets the "isPK" attribute
166:             */
167:            boolean getIsPK();
168:
169:            /**
170:             * Gets (as xml) the "isPK" attribute
171:             */
172:            org.apache.xmlbeans.XmlBoolean xgetIsPK();
173:
174:            /**
175:             * True if has "isPK" attribute
176:             */
177:            boolean isSetIsPK();
178:
179:            /**
180:             * Sets the "isPK" attribute
181:             */
182:            void setIsPK(boolean isPK);
183:
184:            /**
185:             * Sets (as xml) the "isPK" attribute
186:             */
187:            void xsetIsPK(org.apache.xmlbeans.XmlBoolean isPK);
188:
189:            /**
190:             * Unsets the "isPK" attribute
191:             */
192:            void unsetIsPK();
193:
194:            /**
195:             * Gets the "referencingFK" attribute
196:             */
197:            java.lang.String getReferencingFK();
198:
199:            /**
200:             * Gets (as xml) the "referencingFK" attribute
201:             */
202:            org.apache.xmlbeans.XmlString xgetReferencingFK();
203:
204:            /**
205:             * True if has "referencingFK" attribute
206:             */
207:            boolean isSetReferencingFK();
208:
209:            /**
210:             * Sets the "referencingFK" attribute
211:             */
212:            void setReferencingFK(java.lang.String referencingFK);
213:
214:            /**
215:             * Sets (as xml) the "referencingFK" attribute
216:             */
217:            void xsetReferencingFK(org.apache.xmlbeans.XmlString referencingFK);
218:
219:            /**
220:             * Unsets the "referencingFK" attribute
221:             */
222:            void unsetReferencingFK();
223:
224:            /**
225:             * A factory class with static methods for creating instances
226:             * of this type.
227:             */
228:
229:            public static final class Factory {
230:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef newInstance() {
231:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
232:                            .getContextTypeLoader().newInstance(type, null);
233:                }
234:
235:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef newInstance(
236:                        org.apache.xmlbeans.XmlOptions options) {
237:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
238:                            .getContextTypeLoader().newInstance(type, options);
239:                }
240:
241:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef parse(
242:                        java.lang.String s)
243:                        throws org.apache.xmlbeans.XmlException {
244:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
245:                            .getContextTypeLoader().parse(s, type, null);
246:                }
247:
248:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef parse(
249:                        java.lang.String s,
250:                        org.apache.xmlbeans.XmlOptions options)
251:                        throws org.apache.xmlbeans.XmlException {
252:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
253:                            .getContextTypeLoader().parse(s, type, options);
254:                }
255:
256:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef parse(
257:                        java.io.File f)
258:                        throws org.apache.xmlbeans.XmlException,
259:                        java.io.IOException {
260:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
261:                            .getContextTypeLoader().parse(f, type, null);
262:                }
263:
264:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef parse(
265:                        java.io.File f, org.apache.xmlbeans.XmlOptions options)
266:                        throws org.apache.xmlbeans.XmlException,
267:                        java.io.IOException {
268:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
269:                            .getContextTypeLoader().parse(f, type, options);
270:                }
271:
272:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef parse(
273:                        java.net.URL u)
274:                        throws org.apache.xmlbeans.XmlException,
275:                        java.io.IOException {
276:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
277:                            .getContextTypeLoader().parse(u, type, null);
278:                }
279:
280:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef parse(
281:                        java.net.URL u, org.apache.xmlbeans.XmlOptions options)
282:                        throws org.apache.xmlbeans.XmlException,
283:                        java.io.IOException {
284:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
285:                            .getContextTypeLoader().parse(u, type, options);
286:                }
287:
288:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef parse(
289:                        java.io.InputStream is)
290:                        throws org.apache.xmlbeans.XmlException,
291:                        java.io.IOException {
292:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
293:                            .getContextTypeLoader().parse(is, type, null);
294:                }
295:
296:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef parse(
297:                        java.io.InputStream is,
298:                        org.apache.xmlbeans.XmlOptions options)
299:                        throws org.apache.xmlbeans.XmlException,
300:                        java.io.IOException {
301:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
302:                            .getContextTypeLoader().parse(is, type, options);
303:                }
304:
305:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef parse(
306:                        java.io.Reader r)
307:                        throws org.apache.xmlbeans.XmlException,
308:                        java.io.IOException {
309:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
310:                            .getContextTypeLoader().parse(r, type, null);
311:                }
312:
313:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef parse(
314:                        java.io.Reader r, org.apache.xmlbeans.XmlOptions options)
315:                        throws org.apache.xmlbeans.XmlException,
316:                        java.io.IOException {
317:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
318:                            .getContextTypeLoader().parse(r, type, options);
319:                }
320:
321:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef parse(
322:                        org.w3c.dom.Node node)
323:                        throws org.apache.xmlbeans.XmlException {
324:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
325:                            .getContextTypeLoader().parse(node, type, null);
326:                }
327:
328:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef parse(
329:                        org.w3c.dom.Node node,
330:                        org.apache.xmlbeans.XmlOptions options)
331:                        throws org.apache.xmlbeans.XmlException {
332:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
333:                            .getContextTypeLoader().parse(node, type, options);
334:                }
335:
336:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef parse(
337:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis)
338:                        throws org.apache.xmlbeans.XmlException,
339:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
340:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
341:                            .getContextTypeLoader().parse(xis, type, null);
342:                }
343:
344:                public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef parse(
345:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis,
346:                        org.apache.xmlbeans.XmlOptions options)
347:                        throws org.apache.xmlbeans.XmlException,
348:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
349:                    return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.ElementDef) org.apache.xmlbeans.XmlBeans
350:                            .getContextTypeLoader().parse(xis, type, options);
351:                }
352:
353:                public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
354:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis)
355:                        throws org.apache.xmlbeans.XmlException,
356:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
357:                    return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
358:                            .newValidatingXMLInputStream(xis, type, null);
359:                }
360:
361:                public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
362:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis,
363:                        org.apache.xmlbeans.XmlOptions options)
364:                        throws org.apache.xmlbeans.XmlException,
365:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
366:                    return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
367:                            .newValidatingXMLInputStream(xis, type, options);
368:                }
369:
370:                private Factory() {
371:                } // No instance of this class allowed
372:            }
373:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.