001: /*
002: * XML Type: tableDef
003: * Namespace: http://cbesb.bostechcorp.com/etl/dataSourceMap/1.0
004: * Java type: com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef
005: *
006: * Automatically generated - do not modify.
007: */
008: package com.bostechcorp.cbesb.etl.dataSourceMap.x10;
009:
010: /**
011: * An XML tableDef(@http://cbesb.bostechcorp.com/etl/dataSourceMap/1.0).
012: *
013: * This is a complex type.
014: */
015: public interface TableDef 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("tabledefb528type");
018:
019: /**
020: * Gets array of all "compare" elements
021: */
022: com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef[] getCompareArray();
023:
024: /**
025: * Gets ith "compare" element
026: */
027: com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef getCompareArray(
028: int i);
029:
030: /**
031: * Returns number of "compare" element
032: */
033: int sizeOfCompareArray();
034:
035: /**
036: * Sets array of all "compare" element
037: */
038: void setCompareArray(
039: com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef[] compareArray);
040:
041: /**
042: * Sets ith "compare" element
043: */
044: void setCompareArray(
045: int i,
046: com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef compare);
047:
048: /**
049: * Inserts and returns a new empty value (as xml) as the ith "compare" element
050: */
051: com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef insertNewCompare(
052: int i);
053:
054: /**
055: * Appends and returns a new empty value (as xml) as the last "compare" element
056: */
057: com.bostechcorp.cbesb.etl.dataSourceMap.x10.CompareDef addNewCompare();
058:
059: /**
060: * Removes the ith "compare" element
061: */
062: void removeCompare(int i);
063:
064: /**
065: * Gets array of all "parentheses" elements
066: */
067: com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef[] getParenthesesArray();
068:
069: /**
070: * Gets ith "parentheses" element
071: */
072: com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef getParenthesesArray(
073: int i);
074:
075: /**
076: * Returns number of "parentheses" element
077: */
078: int sizeOfParenthesesArray();
079:
080: /**
081: * Sets array of all "parentheses" element
082: */
083: void setParenthesesArray(
084: com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef[] parenthesesArray);
085:
086: /**
087: * Sets ith "parentheses" element
088: */
089: void setParenthesesArray(
090: int i,
091: com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef parentheses);
092:
093: /**
094: * Inserts and returns a new empty value (as xml) as the ith "parentheses" element
095: */
096: com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef insertNewParentheses(
097: int i);
098:
099: /**
100: * Appends and returns a new empty value (as xml) as the last "parentheses" element
101: */
102: com.bostechcorp.cbesb.etl.dataSourceMap.x10.ParenthesesDef addNewParentheses();
103:
104: /**
105: * Removes the ith "parentheses" element
106: */
107: void removeParentheses(int i);
108:
109: /**
110: * Gets array of all "table" elements
111: */
112: com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef[] getTableArray();
113:
114: /**
115: * Gets ith "table" element
116: */
117: com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef getTableArray(
118: int i);
119:
120: /**
121: * Returns number of "table" element
122: */
123: int sizeOfTableArray();
124:
125: /**
126: * Sets array of all "table" element
127: */
128: void setTableArray(
129: com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef[] tableArray);
130:
131: /**
132: * Sets ith "table" element
133: */
134: void setTableArray(int i,
135: com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef table);
136:
137: /**
138: * Inserts and returns a new empty value (as xml) as the ith "table" element
139: */
140: com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef insertNewTable(
141: int i);
142:
143: /**
144: * Appends and returns a new empty value (as xml) as the last "table" element
145: */
146: com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef addNewTable();
147:
148: /**
149: * Removes the ith "table" element
150: */
151: void removeTable(int i);
152:
153: /**
154: * Gets the "name" attribute
155: */
156: java.lang.String getName();
157:
158: /**
159: * Gets (as xml) the "name" attribute
160: */
161: org.apache.xmlbeans.XmlString xgetName();
162:
163: /**
164: * True if has "name" attribute
165: */
166: boolean isSetName();
167:
168: /**
169: * Sets the "name" attribute
170: */
171: void setName(java.lang.String name);
172:
173: /**
174: * Sets (as xml) the "name" attribute
175: */
176: void xsetName(org.apache.xmlbeans.XmlString name);
177:
178: /**
179: * Unsets the "name" attribute
180: */
181: void unsetName();
182:
183: /**
184: * A factory class with static methods for creating instances
185: * of this type.
186: */
187:
188: public static final class Factory {
189: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef newInstance() {
190: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
191: .getContextTypeLoader().newInstance(type, null);
192: }
193:
194: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef newInstance(
195: org.apache.xmlbeans.XmlOptions options) {
196: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
197: .getContextTypeLoader().newInstance(type, options);
198: }
199:
200: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef parse(
201: java.lang.String s)
202: throws org.apache.xmlbeans.XmlException {
203: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
204: .getContextTypeLoader().parse(s, type, null);
205: }
206:
207: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef parse(
208: java.lang.String s,
209: org.apache.xmlbeans.XmlOptions options)
210: throws org.apache.xmlbeans.XmlException {
211: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
212: .getContextTypeLoader().parse(s, type, options);
213: }
214:
215: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef parse(
216: java.io.File f)
217: throws org.apache.xmlbeans.XmlException,
218: java.io.IOException {
219: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
220: .getContextTypeLoader().parse(f, type, null);
221: }
222:
223: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef parse(
224: java.io.File f, org.apache.xmlbeans.XmlOptions options)
225: throws org.apache.xmlbeans.XmlException,
226: java.io.IOException {
227: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
228: .getContextTypeLoader().parse(f, type, options);
229: }
230:
231: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef parse(
232: java.net.URL u)
233: throws org.apache.xmlbeans.XmlException,
234: java.io.IOException {
235: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
236: .getContextTypeLoader().parse(u, type, null);
237: }
238:
239: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef parse(
240: java.net.URL u, org.apache.xmlbeans.XmlOptions options)
241: throws org.apache.xmlbeans.XmlException,
242: java.io.IOException {
243: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
244: .getContextTypeLoader().parse(u, type, options);
245: }
246:
247: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef parse(
248: java.io.InputStream is)
249: throws org.apache.xmlbeans.XmlException,
250: java.io.IOException {
251: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
252: .getContextTypeLoader().parse(is, type, null);
253: }
254:
255: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef parse(
256: java.io.InputStream is,
257: org.apache.xmlbeans.XmlOptions options)
258: throws org.apache.xmlbeans.XmlException,
259: java.io.IOException {
260: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
261: .getContextTypeLoader().parse(is, type, options);
262: }
263:
264: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef parse(
265: java.io.Reader r)
266: throws org.apache.xmlbeans.XmlException,
267: java.io.IOException {
268: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
269: .getContextTypeLoader().parse(r, type, null);
270: }
271:
272: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef parse(
273: java.io.Reader r, org.apache.xmlbeans.XmlOptions options)
274: throws org.apache.xmlbeans.XmlException,
275: java.io.IOException {
276: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
277: .getContextTypeLoader().parse(r, type, options);
278: }
279:
280: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef parse(
281: org.w3c.dom.Node node)
282: throws org.apache.xmlbeans.XmlException {
283: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
284: .getContextTypeLoader().parse(node, type, null);
285: }
286:
287: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef parse(
288: org.w3c.dom.Node node,
289: org.apache.xmlbeans.XmlOptions options)
290: throws org.apache.xmlbeans.XmlException {
291: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
292: .getContextTypeLoader().parse(node, type, options);
293: }
294:
295: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef parse(
296: org.apache.xmlbeans.xml.stream.XMLInputStream xis)
297: throws org.apache.xmlbeans.XmlException,
298: org.apache.xmlbeans.xml.stream.XMLStreamException {
299: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
300: .getContextTypeLoader().parse(xis, type, null);
301: }
302:
303: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef parse(
304: org.apache.xmlbeans.xml.stream.XMLInputStream xis,
305: org.apache.xmlbeans.XmlOptions options)
306: throws org.apache.xmlbeans.XmlException,
307: org.apache.xmlbeans.xml.stream.XMLStreamException {
308: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.TableDef) org.apache.xmlbeans.XmlBeans
309: .getContextTypeLoader().parse(xis, type, options);
310: }
311:
312: public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
313: org.apache.xmlbeans.xml.stream.XMLInputStream xis)
314: throws org.apache.xmlbeans.XmlException,
315: org.apache.xmlbeans.xml.stream.XMLStreamException {
316: return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
317: .newValidatingXMLInputStream(xis, type, null);
318: }
319:
320: public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
321: org.apache.xmlbeans.xml.stream.XMLInputStream xis,
322: org.apache.xmlbeans.XmlOptions options)
323: throws org.apache.xmlbeans.XmlException,
324: org.apache.xmlbeans.xml.stream.XMLStreamException {
325: return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
326: .newValidatingXMLInputStream(xis, type, options);
327: }
328:
329: private Factory() {
330: } // No instance of this class allowed
331: }
332: }
|