Source Code Cross Referenced for BindingOperationMessageType.java in  » ESB » open-esb » org » w3 » ns » wsdl » 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 » open esb » org.w3.ns.wsdl 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * XML Type:  BindingOperationMessageType
003:         * Namespace: http://www.w3.org/ns/wsdl
004:         * Java type: org.w3.ns.wsdl.BindingOperationMessageType
005:         *
006:         * Automatically generated - do not modify.
007:         */
008:        package org.w3.ns.wsdl;
009:
010:        /**
011:         * An XML BindingOperationMessageType(@http://www.w3.org/ns/wsdl).
012:         *
013:         * This is a complex type.
014:         */
015:        public interface BindingOperationMessageType extends
016:                org.w3.ns.wsdl.ExtensibleDocumentedType {
017:            public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans
018:                    .typeSystemForClassLoader(
019:                            BindingOperationMessageType.class.getClassLoader(),
020:                            "schemaorg_apache_xmlbeans.system.s2EAECD9BB08C57F25B7B261051DD8E7E")
021:                    .resolveHandle("bindingoperationmessagetype96f0type");
022:
023:            /**
024:             * Gets the "messageLabel" attribute
025:             */
026:            java.lang.String getMessageLabel();
027:
028:            /**
029:             * Gets (as xml) the "messageLabel" attribute
030:             */
031:            org.apache.xmlbeans.XmlNCName xgetMessageLabel();
032:
033:            /**
034:             * True if has "messageLabel" attribute
035:             */
036:            boolean isSetMessageLabel();
037:
038:            /**
039:             * Sets the "messageLabel" attribute
040:             */
041:            void setMessageLabel(java.lang.String messageLabel);
042:
043:            /**
044:             * Sets (as xml) the "messageLabel" attribute
045:             */
046:            void xsetMessageLabel(org.apache.xmlbeans.XmlNCName messageLabel);
047:
048:            /**
049:             * Unsets the "messageLabel" attribute
050:             */
051:            void unsetMessageLabel();
052:
053:            /**
054:             * A factory class with static methods for creating instances
055:             * of this type.
056:             */
057:
058:            public static final class Factory {
059:                public static org.w3.ns.wsdl.BindingOperationMessageType newInstance() {
060:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
061:                            .getContextTypeLoader().newInstance(type, null);
062:                }
063:
064:                public static org.w3.ns.wsdl.BindingOperationMessageType newInstance(
065:                        org.apache.xmlbeans.XmlOptions options) {
066:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
067:                            .getContextTypeLoader().newInstance(type, options);
068:                }
069:
070:                /** @param xmlAsString the string value to parse */
071:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
072:                        java.lang.String xmlAsString)
073:                        throws org.apache.xmlbeans.XmlException {
074:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
075:                            .getContextTypeLoader().parse(xmlAsString, type,
076:                                    null);
077:                }
078:
079:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
080:                        java.lang.String xmlAsString,
081:                        org.apache.xmlbeans.XmlOptions options)
082:                        throws org.apache.xmlbeans.XmlException {
083:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
084:                            .getContextTypeLoader().parse(xmlAsString, type,
085:                                    options);
086:                }
087:
088:                /** @param file the file from which to load an xml document */
089:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
090:                        java.io.File file)
091:                        throws org.apache.xmlbeans.XmlException,
092:                        java.io.IOException {
093:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
094:                            .getContextTypeLoader().parse(file, type, null);
095:                }
096:
097:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
098:                        java.io.File file,
099:                        org.apache.xmlbeans.XmlOptions options)
100:                        throws org.apache.xmlbeans.XmlException,
101:                        java.io.IOException {
102:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
103:                            .getContextTypeLoader().parse(file, type, options);
104:                }
105:
106:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
107:                        java.net.URL u)
108:                        throws org.apache.xmlbeans.XmlException,
109:                        java.io.IOException {
110:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
111:                            .getContextTypeLoader().parse(u, type, null);
112:                }
113:
114:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
115:                        java.net.URL u, org.apache.xmlbeans.XmlOptions options)
116:                        throws org.apache.xmlbeans.XmlException,
117:                        java.io.IOException {
118:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
119:                            .getContextTypeLoader().parse(u, type, options);
120:                }
121:
122:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
123:                        java.io.InputStream is)
124:                        throws org.apache.xmlbeans.XmlException,
125:                        java.io.IOException {
126:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
127:                            .getContextTypeLoader().parse(is, type, null);
128:                }
129:
130:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
131:                        java.io.InputStream is,
132:                        org.apache.xmlbeans.XmlOptions options)
133:                        throws org.apache.xmlbeans.XmlException,
134:                        java.io.IOException {
135:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
136:                            .getContextTypeLoader().parse(is, type, options);
137:                }
138:
139:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
140:                        java.io.Reader r)
141:                        throws org.apache.xmlbeans.XmlException,
142:                        java.io.IOException {
143:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
144:                            .getContextTypeLoader().parse(r, type, null);
145:                }
146:
147:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
148:                        java.io.Reader r, org.apache.xmlbeans.XmlOptions options)
149:                        throws org.apache.xmlbeans.XmlException,
150:                        java.io.IOException {
151:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
152:                            .getContextTypeLoader().parse(r, type, options);
153:                }
154:
155:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
156:                        javax.xml.stream.XMLStreamReader sr)
157:                        throws org.apache.xmlbeans.XmlException {
158:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
159:                            .getContextTypeLoader().parse(sr, type, null);
160:                }
161:
162:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
163:                        javax.xml.stream.XMLStreamReader sr,
164:                        org.apache.xmlbeans.XmlOptions options)
165:                        throws org.apache.xmlbeans.XmlException {
166:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
167:                            .getContextTypeLoader().parse(sr, type, options);
168:                }
169:
170:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
171:                        org.w3c.dom.Node node)
172:                        throws org.apache.xmlbeans.XmlException {
173:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
174:                            .getContextTypeLoader().parse(node, type, null);
175:                }
176:
177:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
178:                        org.w3c.dom.Node node,
179:                        org.apache.xmlbeans.XmlOptions options)
180:                        throws org.apache.xmlbeans.XmlException {
181:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
182:                            .getContextTypeLoader().parse(node, type, options);
183:                }
184:
185:                /** @deprecated {@link XMLInputStream} */
186:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
187:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis)
188:                        throws org.apache.xmlbeans.XmlException,
189:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
190:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
191:                            .getContextTypeLoader().parse(xis, type, null);
192:                }
193:
194:                /** @deprecated {@link XMLInputStream} */
195:                public static org.w3.ns.wsdl.BindingOperationMessageType parse(
196:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis,
197:                        org.apache.xmlbeans.XmlOptions options)
198:                        throws org.apache.xmlbeans.XmlException,
199:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
200:                    return (org.w3.ns.wsdl.BindingOperationMessageType) org.apache.xmlbeans.XmlBeans
201:                            .getContextTypeLoader().parse(xis, type, options);
202:                }
203:
204:                /** @deprecated {@link XMLInputStream} */
205:                public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
206:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis)
207:                        throws org.apache.xmlbeans.XmlException,
208:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
209:                    return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
210:                            .newValidatingXMLInputStream(xis, type, null);
211:                }
212:
213:                /** @deprecated {@link XMLInputStream} */
214:                public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
215:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis,
216:                        org.apache.xmlbeans.XmlOptions options)
217:                        throws org.apache.xmlbeans.XmlException,
218:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
219:                    return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
220:                            .newValidatingXMLInputStream(xis, type, options);
221:                }
222:
223:                private Factory() {
224:                } // No instance of this class allowed
225:            }
226:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.