001: /*
002: * An XML document type.
003: * Localname: WebServiceName
004: * Namespace: http://cbesb.bostechcorp.com/ws/wsdl/1.0
005: * Java type: com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument
006: *
007: * Automatically generated - do not modify.
008: */
009: package com.bostechcorp.cbesb.ws.wsdl.x10;
010:
011: /**
012: * A document containing one WebServiceName(@http://cbesb.bostechcorp.com/ws/wsdl/1.0) element.
013: *
014: * This is a complex type.
015: */
016: public interface WebServiceNameDocument extends
017: org.apache.xmlbeans.XmlObject {
018: public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) schema.system.s02AF69AC20D165F0A1882DA345AE5975.TypeSystemHolder.typeSystem
019: .resolveHandle("webservicename7d75doctype");
020:
021: /**
022: * Gets the "WebServiceName" element
023: */
024: java.lang.String getWebServiceName();
025:
026: /**
027: * Gets (as xml) the "WebServiceName" element
028: */
029: org.apache.xmlbeans.XmlNCName xgetWebServiceName();
030:
031: /**
032: * Sets the "WebServiceName" element
033: */
034: void setWebServiceName(java.lang.String webServiceName);
035:
036: /**
037: * Sets (as xml) the "WebServiceName" element
038: */
039: void xsetWebServiceName(org.apache.xmlbeans.XmlNCName webServiceName);
040:
041: /**
042: * A factory class with static methods for creating instances
043: * of this type.
044: */
045:
046: public static final class Factory {
047: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument newInstance() {
048: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
049: .getContextTypeLoader().newInstance(type, null);
050: }
051:
052: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument newInstance(
053: org.apache.xmlbeans.XmlOptions options) {
054: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
055: .getContextTypeLoader().newInstance(type, options);
056: }
057:
058: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument parse(
059: java.lang.String s)
060: throws org.apache.xmlbeans.XmlException {
061: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
062: .getContextTypeLoader().parse(s, type, null);
063: }
064:
065: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument parse(
066: java.lang.String s,
067: org.apache.xmlbeans.XmlOptions options)
068: throws org.apache.xmlbeans.XmlException {
069: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
070: .getContextTypeLoader().parse(s, type, options);
071: }
072:
073: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument parse(
074: java.io.File f)
075: throws org.apache.xmlbeans.XmlException,
076: java.io.IOException {
077: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
078: .getContextTypeLoader().parse(f, type, null);
079: }
080:
081: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument parse(
082: java.io.File f, org.apache.xmlbeans.XmlOptions options)
083: throws org.apache.xmlbeans.XmlException,
084: java.io.IOException {
085: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
086: .getContextTypeLoader().parse(f, type, options);
087: }
088:
089: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument parse(
090: java.net.URL u)
091: throws org.apache.xmlbeans.XmlException,
092: java.io.IOException {
093: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
094: .getContextTypeLoader().parse(u, type, null);
095: }
096:
097: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument parse(
098: java.net.URL u, org.apache.xmlbeans.XmlOptions options)
099: throws org.apache.xmlbeans.XmlException,
100: java.io.IOException {
101: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
102: .getContextTypeLoader().parse(u, type, options);
103: }
104:
105: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument parse(
106: java.io.InputStream is)
107: throws org.apache.xmlbeans.XmlException,
108: java.io.IOException {
109: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
110: .getContextTypeLoader().parse(is, type, null);
111: }
112:
113: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument parse(
114: java.io.InputStream is,
115: org.apache.xmlbeans.XmlOptions options)
116: throws org.apache.xmlbeans.XmlException,
117: java.io.IOException {
118: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
119: .getContextTypeLoader().parse(is, type, options);
120: }
121:
122: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument parse(
123: java.io.Reader r)
124: throws org.apache.xmlbeans.XmlException,
125: java.io.IOException {
126: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
127: .getContextTypeLoader().parse(r, type, null);
128: }
129:
130: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument parse(
131: java.io.Reader r, org.apache.xmlbeans.XmlOptions options)
132: throws org.apache.xmlbeans.XmlException,
133: java.io.IOException {
134: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
135: .getContextTypeLoader().parse(r, type, options);
136: }
137:
138: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument parse(
139: org.w3c.dom.Node node)
140: throws org.apache.xmlbeans.XmlException {
141: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
142: .getContextTypeLoader().parse(node, type, null);
143: }
144:
145: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument parse(
146: org.w3c.dom.Node node,
147: org.apache.xmlbeans.XmlOptions options)
148: throws org.apache.xmlbeans.XmlException {
149: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
150: .getContextTypeLoader().parse(node, type, options);
151: }
152:
153: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument parse(
154: org.apache.xmlbeans.xml.stream.XMLInputStream xis)
155: throws org.apache.xmlbeans.XmlException,
156: org.apache.xmlbeans.xml.stream.XMLStreamException {
157: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
158: .getContextTypeLoader().parse(xis, type, null);
159: }
160:
161: public static com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument parse(
162: org.apache.xmlbeans.xml.stream.XMLInputStream xis,
163: org.apache.xmlbeans.XmlOptions options)
164: throws org.apache.xmlbeans.XmlException,
165: org.apache.xmlbeans.xml.stream.XMLStreamException {
166: return (com.bostechcorp.cbesb.ws.wsdl.x10.WebServiceNameDocument) org.apache.xmlbeans.XmlBeans
167: .getContextTypeLoader().parse(xis, type, options);
168: }
169:
170: public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
171: org.apache.xmlbeans.xml.stream.XMLInputStream xis)
172: throws org.apache.xmlbeans.XmlException,
173: org.apache.xmlbeans.xml.stream.XMLStreamException {
174: return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
175: .newValidatingXMLInputStream(xis, type, null);
176: }
177:
178: public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
179: org.apache.xmlbeans.xml.stream.XMLInputStream xis,
180: org.apache.xmlbeans.XmlOptions options)
181: throws org.apache.xmlbeans.XmlException,
182: org.apache.xmlbeans.xml.stream.XMLStreamException {
183: return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
184: .newValidatingXMLInputStream(xis, type, options);
185: }
186:
187: private Factory() {
188: } // No instance of this class allowed
189: }
190: }
|