Source code: com/dell/wsdm/demos/interop/x2005/x04/ResetResponseDocument.java
1 /*
2 * An XML document type.
3 * Localname: ResetResponse
4 * Namespace: http://dell.com/wsdm/demos/interop/2005/04
5 * Java type: com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument
6 *
7 * Automatically generated - do not modify.
8 */
9 package com.dell.wsdm.demos.interop.x2005.x04;
10
11
12 /**
13 * A document containing one ResetResponse(@http://dell.com/wsdm/demos/interop/2005/04) element.
14 *
15 * This is a complex type.
16 */
17 public interface ResetResponseDocument extends org.apache.xmlbeans.XmlObject
18 {
19 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s9453AECF4F2EEB571E8F3D241921E275.TypeSystemHolder.typeSystem.resolveHandle("resetresponse2027doctype");
20
21 /**
22 * Gets the "ResetResponse" element
23 */
24 com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse getResetResponse();
25
26 /**
27 * Sets the "ResetResponse" element
28 */
29 void setResetResponse(com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse resetResponse);
30
31 /**
32 * Appends and returns a new empty "ResetResponse" element
33 */
34 com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse addNewResetResponse();
35
36 /**
37 * An XML ResetResponse(@http://dell.com/wsdm/demos/interop/2005/04).
38 *
39 * This is a complex type.
40 */
41 public interface ResetResponse extends org.apache.xmlbeans.XmlObject
42 {
43 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s9453AECF4F2EEB571E8F3D241921E275.TypeSystemHolder.typeSystem.resolveHandle("resetresponse1dabelemtype");
44
45 /**
46 * A factory class with static methods for creating instances
47 * of this type.
48 */
49
50 public static final class Factory
51 {
52 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse newInstance() {
53 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
54
55 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse newInstance(org.apache.xmlbeans.XmlOptions options) {
56 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
57
58 private Factory() { } // No instance of this class allowed
59 }
60 }
61
62 /**
63 * A factory class with static methods for creating instances
64 * of this type.
65 */
66
67 public static final class Factory
68 {
69 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument newInstance() {
70 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
71
72 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
73 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
74
75 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument parse(java.lang.String s) throws org.apache.xmlbeans.XmlException {
76 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( s, type, null ); }
77
78 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument parse(java.lang.String s, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
79 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( s, type, options ); }
80
81 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument parse(java.io.File f) throws org.apache.xmlbeans.XmlException, java.io.IOException {
82 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( f, type, null ); }
83
84 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument parse(java.io.File f, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
85 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( f, type, options ); }
86
87 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
88 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
89
90 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
91 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
92
93 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
94 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
95
96 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
97 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
98
99 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
100 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
101
102 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
103 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
104
105 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
106 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
107
108 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
109 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
110
111 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
112 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
113
114 public static com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
115 return (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
116
117 public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
118 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
119
120 public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
121 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
122
123 private Factory() { } // No instance of this class allowed
124 }
125 }