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