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: }
|