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