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