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


001:        /*
002:         * XML Type:  operationDef
003:         * Namespace: http://cbesb.bostechcorp.com/trn/1.0
004:         * Java type: com.bostechcorp.cbesb.trn.x10.OperationDef
005:         *
006:         * Automatically generated - do not modify.
007:         */
008:        package com.bostechcorp.cbesb.trn.x10;
009:
010:        /**
011:         * An XML operationDef(@http://cbesb.bostechcorp.com/trn/1.0).
012:         *
013:         * This is a complex type.
014:         */
015:        public interface OperationDef extends org.apache.xmlbeans.XmlObject {
016:            public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) schema.system.s0B3B7136B4851F6C7339FF1D42F95F8A.TypeSystemHolder.typeSystem
017:                    .resolveHandle("operationdefdaectype");
018:
019:            /**
020:             * Gets the "parameters" element
021:             */
022:            com.bostechcorp.cbesb.trn.x10.ParamDef getParameters();
023:
024:            /**
025:             * True if has "parameters" element
026:             */
027:            boolean isSetParameters();
028:
029:            /**
030:             * Sets the "parameters" element
031:             */
032:            void setParameters(com.bostechcorp.cbesb.trn.x10.ParamDef parameters);
033:
034:            /**
035:             * Appends and returns a new empty "parameters" element
036:             */
037:            com.bostechcorp.cbesb.trn.x10.ParamDef addNewParameters();
038:
039:            /**
040:             * Unsets the "parameters" element
041:             */
042:            void unsetParameters();
043:
044:            /**
045:             * Gets the "operationList" element
046:             */
047:            com.bostechcorp.cbesb.trn.x10.OperationListDef getOperationList();
048:
049:            /**
050:             * True if has "operationList" element
051:             */
052:            boolean isSetOperationList();
053:
054:            /**
055:             * Sets the "operationList" element
056:             */
057:            void setOperationList(
058:                    com.bostechcorp.cbesb.trn.x10.OperationListDef operationList);
059:
060:            /**
061:             * Appends and returns a new empty "operationList" element
062:             */
063:            com.bostechcorp.cbesb.trn.x10.OperationListDef addNewOperationList();
064:
065:            /**
066:             * Unsets the "operationList" element
067:             */
068:            void unsetOperationList();
069:
070:            /**
071:             * Gets the "type" attribute
072:             */
073:            java.lang.String getType();
074:
075:            /**
076:             * Gets (as xml) the "type" attribute
077:             */
078:            org.apache.xmlbeans.XmlString xgetType();
079:
080:            /**
081:             * Sets the "type" attribute
082:             */
083:            void setType(java.lang.String type);
084:
085:            /**
086:             * Sets (as xml) the "type" attribute
087:             */
088:            void xsetType(org.apache.xmlbeans.XmlString type);
089:
090:            /**
091:             * Gets the "class" attribute
092:             */
093:            java.lang.String getClass1();
094:
095:            /**
096:             * Gets (as xml) the "class" attribute
097:             */
098:            org.apache.xmlbeans.XmlString xgetClass1();
099:
100:            /**
101:             * True if has "class" attribute
102:             */
103:            boolean isSetClass1();
104:
105:            /**
106:             * Sets the "class" attribute
107:             */
108:            void setClass1(java.lang.String class1);
109:
110:            /**
111:             * Sets (as xml) the "class" attribute
112:             */
113:            void xsetClass1(org.apache.xmlbeans.XmlString class1);
114:
115:            /**
116:             * Unsets the "class" attribute
117:             */
118:            void unsetClass1();
119:
120:            /**
121:             * Gets the "method" attribute
122:             */
123:            java.lang.String getMethod();
124:
125:            /**
126:             * Gets (as xml) the "method" attribute
127:             */
128:            org.apache.xmlbeans.XmlString xgetMethod();
129:
130:            /**
131:             * True if has "method" attribute
132:             */
133:            boolean isSetMethod();
134:
135:            /**
136:             * Sets the "method" attribute
137:             */
138:            void setMethod(java.lang.String method);
139:
140:            /**
141:             * Sets (as xml) the "method" attribute
142:             */
143:            void xsetMethod(org.apache.xmlbeans.XmlString method);
144:
145:            /**
146:             * Unsets the "method" attribute
147:             */
148:            void unsetMethod();
149:
150:            /**
151:             * Gets the "name" attribute
152:             */
153:            java.lang.String getName();
154:
155:            /**
156:             * Gets (as xml) the "name" attribute
157:             */
158:            org.apache.xmlbeans.XmlString xgetName();
159:
160:            /**
161:             * True if has "name" attribute
162:             */
163:            boolean isSetName();
164:
165:            /**
166:             * Sets the "name" attribute
167:             */
168:            void setName(java.lang.String name);
169:
170:            /**
171:             * Sets (as xml) the "name" attribute
172:             */
173:            void xsetName(org.apache.xmlbeans.XmlString name);
174:
175:            /**
176:             * Unsets the "name" attribute
177:             */
178:            void unsetName();
179:
180:            /**
181:             * A factory class with static methods for creating instances
182:             * of this type.
183:             */
184:
185:            public static final class Factory {
186:                public static com.bostechcorp.cbesb.trn.x10.OperationDef newInstance() {
187:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
188:                            .getContextTypeLoader().newInstance(type, null);
189:                }
190:
191:                public static com.bostechcorp.cbesb.trn.x10.OperationDef newInstance(
192:                        org.apache.xmlbeans.XmlOptions options) {
193:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
194:                            .getContextTypeLoader().newInstance(type, options);
195:                }
196:
197:                public static com.bostechcorp.cbesb.trn.x10.OperationDef parse(
198:                        java.lang.String s)
199:                        throws org.apache.xmlbeans.XmlException {
200:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
201:                            .getContextTypeLoader().parse(s, type, null);
202:                }
203:
204:                public static com.bostechcorp.cbesb.trn.x10.OperationDef parse(
205:                        java.lang.String s,
206:                        org.apache.xmlbeans.XmlOptions options)
207:                        throws org.apache.xmlbeans.XmlException {
208:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
209:                            .getContextTypeLoader().parse(s, type, options);
210:                }
211:
212:                public static com.bostechcorp.cbesb.trn.x10.OperationDef parse(
213:                        java.io.File f)
214:                        throws org.apache.xmlbeans.XmlException,
215:                        java.io.IOException {
216:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
217:                            .getContextTypeLoader().parse(f, type, null);
218:                }
219:
220:                public static com.bostechcorp.cbesb.trn.x10.OperationDef parse(
221:                        java.io.File f, org.apache.xmlbeans.XmlOptions options)
222:                        throws org.apache.xmlbeans.XmlException,
223:                        java.io.IOException {
224:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
225:                            .getContextTypeLoader().parse(f, type, options);
226:                }
227:
228:                public static com.bostechcorp.cbesb.trn.x10.OperationDef parse(
229:                        java.net.URL u)
230:                        throws org.apache.xmlbeans.XmlException,
231:                        java.io.IOException {
232:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
233:                            .getContextTypeLoader().parse(u, type, null);
234:                }
235:
236:                public static com.bostechcorp.cbesb.trn.x10.OperationDef parse(
237:                        java.net.URL u, org.apache.xmlbeans.XmlOptions options)
238:                        throws org.apache.xmlbeans.XmlException,
239:                        java.io.IOException {
240:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
241:                            .getContextTypeLoader().parse(u, type, options);
242:                }
243:
244:                public static com.bostechcorp.cbesb.trn.x10.OperationDef parse(
245:                        java.io.InputStream is)
246:                        throws org.apache.xmlbeans.XmlException,
247:                        java.io.IOException {
248:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
249:                            .getContextTypeLoader().parse(is, type, null);
250:                }
251:
252:                public static com.bostechcorp.cbesb.trn.x10.OperationDef parse(
253:                        java.io.InputStream is,
254:                        org.apache.xmlbeans.XmlOptions options)
255:                        throws org.apache.xmlbeans.XmlException,
256:                        java.io.IOException {
257:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
258:                            .getContextTypeLoader().parse(is, type, options);
259:                }
260:
261:                public static com.bostechcorp.cbesb.trn.x10.OperationDef parse(
262:                        java.io.Reader r)
263:                        throws org.apache.xmlbeans.XmlException,
264:                        java.io.IOException {
265:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
266:                            .getContextTypeLoader().parse(r, type, null);
267:                }
268:
269:                public static com.bostechcorp.cbesb.trn.x10.OperationDef parse(
270:                        java.io.Reader r, org.apache.xmlbeans.XmlOptions options)
271:                        throws org.apache.xmlbeans.XmlException,
272:                        java.io.IOException {
273:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
274:                            .getContextTypeLoader().parse(r, type, options);
275:                }
276:
277:                public static com.bostechcorp.cbesb.trn.x10.OperationDef parse(
278:                        org.w3c.dom.Node node)
279:                        throws org.apache.xmlbeans.XmlException {
280:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
281:                            .getContextTypeLoader().parse(node, type, null);
282:                }
283:
284:                public static com.bostechcorp.cbesb.trn.x10.OperationDef parse(
285:                        org.w3c.dom.Node node,
286:                        org.apache.xmlbeans.XmlOptions options)
287:                        throws org.apache.xmlbeans.XmlException {
288:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
289:                            .getContextTypeLoader().parse(node, type, options);
290:                }
291:
292:                public static com.bostechcorp.cbesb.trn.x10.OperationDef parse(
293:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis)
294:                        throws org.apache.xmlbeans.XmlException,
295:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
296:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
297:                            .getContextTypeLoader().parse(xis, type, null);
298:                }
299:
300:                public static com.bostechcorp.cbesb.trn.x10.OperationDef parse(
301:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis,
302:                        org.apache.xmlbeans.XmlOptions options)
303:                        throws org.apache.xmlbeans.XmlException,
304:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
305:                    return (com.bostechcorp.cbesb.trn.x10.OperationDef) org.apache.xmlbeans.XmlBeans
306:                            .getContextTypeLoader().parse(xis, type, options);
307:                }
308:
309:                public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
310:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis)
311:                        throws org.apache.xmlbeans.XmlException,
312:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
313:                    return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
314:                            .newValidatingXMLInputStream(xis, type, null);
315:                }
316:
317:                public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
318:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis,
319:                        org.apache.xmlbeans.XmlOptions options)
320:                        throws org.apache.xmlbeans.XmlException,
321:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
322:                    return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
323:                            .newValidatingXMLInputStream(xis, type, options);
324:                }
325:
326:                private Factory() {
327:                } // No instance of this class allowed
328:            }
329:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.