001: /*
002: * XML Type: formatDef
003: * Namespace: http://cbesb.bostechcorp.com/trn/1.0
004: * Java type: com.bostechcorp.cbesb.trn.x10.FormatDef
005: *
006: * Automatically generated - do not modify.
007: */
008: package com.bostechcorp.cbesb.trn.x10;
009:
010: /**
011: * An XML formatDef(@http://cbesb.bostechcorp.com/trn/1.0).
012: *
013: * This is a complex type.
014: */
015: public interface FormatDef 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("formatdef0f6etype");
018:
019: /**
020: * Gets the "format" attribute
021: */
022: java.lang.String getFormat();
023:
024: /**
025: * Gets (as xml) the "format" attribute
026: */
027: org.apache.xmlbeans.XmlString xgetFormat();
028:
029: /**
030: * True if has "format" attribute
031: */
032: boolean isSetFormat();
033:
034: /**
035: * Sets the "format" attribute
036: */
037: void setFormat(java.lang.String format);
038:
039: /**
040: * Sets (as xml) the "format" attribute
041: */
042: void xsetFormat(org.apache.xmlbeans.XmlString format);
043:
044: /**
045: * Unsets the "format" attribute
046: */
047: void unsetFormat();
048:
049: /**
050: * Gets the "name" attribute
051: */
052: java.lang.String getName();
053:
054: /**
055: * Gets (as xml) the "name" attribute
056: */
057: org.apache.xmlbeans.XmlString xgetName();
058:
059: /**
060: * True if has "name" attribute
061: */
062: boolean isSetName();
063:
064: /**
065: * Sets the "name" attribute
066: */
067: void setName(java.lang.String name);
068:
069: /**
070: * Sets (as xml) the "name" attribute
071: */
072: void xsetName(org.apache.xmlbeans.XmlString name);
073:
074: /**
075: * Unsets the "name" attribute
076: */
077: void unsetName();
078:
079: /**
080: * Gets the "root" attribute
081: */
082: java.lang.String getRoot();
083:
084: /**
085: * Gets (as xml) the "root" attribute
086: */
087: org.apache.xmlbeans.XmlString xgetRoot();
088:
089: /**
090: * True if has "root" attribute
091: */
092: boolean isSetRoot();
093:
094: /**
095: * Sets the "root" attribute
096: */
097: void setRoot(java.lang.String root);
098:
099: /**
100: * Sets (as xml) the "root" attribute
101: */
102: void xsetRoot(org.apache.xmlbeans.XmlString root);
103:
104: /**
105: * Unsets the "root" attribute
106: */
107: void unsetRoot();
108:
109: /**
110: * A factory class with static methods for creating instances
111: * of this type.
112: */
113:
114: public static final class Factory {
115: public static com.bostechcorp.cbesb.trn.x10.FormatDef newInstance() {
116: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
117: .getContextTypeLoader().newInstance(type, null);
118: }
119:
120: public static com.bostechcorp.cbesb.trn.x10.FormatDef newInstance(
121: org.apache.xmlbeans.XmlOptions options) {
122: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
123: .getContextTypeLoader().newInstance(type, options);
124: }
125:
126: public static com.bostechcorp.cbesb.trn.x10.FormatDef parse(
127: java.lang.String s)
128: throws org.apache.xmlbeans.XmlException {
129: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
130: .getContextTypeLoader().parse(s, type, null);
131: }
132:
133: public static com.bostechcorp.cbesb.trn.x10.FormatDef parse(
134: java.lang.String s,
135: org.apache.xmlbeans.XmlOptions options)
136: throws org.apache.xmlbeans.XmlException {
137: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
138: .getContextTypeLoader().parse(s, type, options);
139: }
140:
141: public static com.bostechcorp.cbesb.trn.x10.FormatDef parse(
142: java.io.File f)
143: throws org.apache.xmlbeans.XmlException,
144: java.io.IOException {
145: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
146: .getContextTypeLoader().parse(f, type, null);
147: }
148:
149: public static com.bostechcorp.cbesb.trn.x10.FormatDef parse(
150: java.io.File f, org.apache.xmlbeans.XmlOptions options)
151: throws org.apache.xmlbeans.XmlException,
152: java.io.IOException {
153: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
154: .getContextTypeLoader().parse(f, type, options);
155: }
156:
157: public static com.bostechcorp.cbesb.trn.x10.FormatDef parse(
158: java.net.URL u)
159: throws org.apache.xmlbeans.XmlException,
160: java.io.IOException {
161: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
162: .getContextTypeLoader().parse(u, type, null);
163: }
164:
165: public static com.bostechcorp.cbesb.trn.x10.FormatDef parse(
166: java.net.URL u, org.apache.xmlbeans.XmlOptions options)
167: throws org.apache.xmlbeans.XmlException,
168: java.io.IOException {
169: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
170: .getContextTypeLoader().parse(u, type, options);
171: }
172:
173: public static com.bostechcorp.cbesb.trn.x10.FormatDef parse(
174: java.io.InputStream is)
175: throws org.apache.xmlbeans.XmlException,
176: java.io.IOException {
177: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
178: .getContextTypeLoader().parse(is, type, null);
179: }
180:
181: public static com.bostechcorp.cbesb.trn.x10.FormatDef parse(
182: java.io.InputStream is,
183: org.apache.xmlbeans.XmlOptions options)
184: throws org.apache.xmlbeans.XmlException,
185: java.io.IOException {
186: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
187: .getContextTypeLoader().parse(is, type, options);
188: }
189:
190: public static com.bostechcorp.cbesb.trn.x10.FormatDef parse(
191: java.io.Reader r)
192: throws org.apache.xmlbeans.XmlException,
193: java.io.IOException {
194: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
195: .getContextTypeLoader().parse(r, type, null);
196: }
197:
198: public static com.bostechcorp.cbesb.trn.x10.FormatDef parse(
199: java.io.Reader r, org.apache.xmlbeans.XmlOptions options)
200: throws org.apache.xmlbeans.XmlException,
201: java.io.IOException {
202: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
203: .getContextTypeLoader().parse(r, type, options);
204: }
205:
206: public static com.bostechcorp.cbesb.trn.x10.FormatDef parse(
207: org.w3c.dom.Node node)
208: throws org.apache.xmlbeans.XmlException {
209: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
210: .getContextTypeLoader().parse(node, type, null);
211: }
212:
213: public static com.bostechcorp.cbesb.trn.x10.FormatDef parse(
214: org.w3c.dom.Node node,
215: org.apache.xmlbeans.XmlOptions options)
216: throws org.apache.xmlbeans.XmlException {
217: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
218: .getContextTypeLoader().parse(node, type, options);
219: }
220:
221: public static com.bostechcorp.cbesb.trn.x10.FormatDef parse(
222: org.apache.xmlbeans.xml.stream.XMLInputStream xis)
223: throws org.apache.xmlbeans.XmlException,
224: org.apache.xmlbeans.xml.stream.XMLStreamException {
225: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
226: .getContextTypeLoader().parse(xis, type, null);
227: }
228:
229: public static com.bostechcorp.cbesb.trn.x10.FormatDef parse(
230: org.apache.xmlbeans.xml.stream.XMLInputStream xis,
231: org.apache.xmlbeans.XmlOptions options)
232: throws org.apache.xmlbeans.XmlException,
233: org.apache.xmlbeans.xml.stream.XMLStreamException {
234: return (com.bostechcorp.cbesb.trn.x10.FormatDef) org.apache.xmlbeans.XmlBeans
235: .getContextTypeLoader().parse(xis, type, options);
236: }
237:
238: public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
239: org.apache.xmlbeans.xml.stream.XMLInputStream xis)
240: throws org.apache.xmlbeans.XmlException,
241: org.apache.xmlbeans.xml.stream.XMLStreamException {
242: return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
243: .newValidatingXMLInputStream(xis, type, null);
244: }
245:
246: public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
247: org.apache.xmlbeans.xml.stream.XMLInputStream xis,
248: org.apache.xmlbeans.XmlOptions options)
249: throws org.apache.xmlbeans.XmlException,
250: org.apache.xmlbeans.xml.stream.XMLStreamException {
251: return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
252: .newValidatingXMLInputStream(xis, type, options);
253: }
254:
255: private Factory() {
256: } // No instance of this class allowed
257: }
258: }
|