001 /*
002 * XML Type: patternType
003 * Namespace: http://geronimo.apache.org/xml/ns/deployment-1.2
004 * Java type: org.apache.geronimo.deployment.xbeans.PatternType
005 *
006 * Automatically generated - do not modify.
007 */
008 package org.apache.geronimo.deployment.xbeans;
009
010
011 /**
012 * An XML patternType(@http://geronimo.apache.org/xml/ns/deployment-1.2).
013 *
014 * This is a complex type.
015 */
016 public interface PatternType extends org.apache.xmlbeans.XmlObject
017 {
018 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schemaorg_apache_xmlbeans.system.s596967AB426BF091FD59326316BABB46.TypeSystemHolder.typeSystem.resolveHandle("patterntyped2d7type");
019
020 /**
021 * Gets the "groupId" element
022 */
023 java.lang.String getGroupId();
024
025 /**
026 * Gets (as xml) the "groupId" element
027 */
028 org.apache.xmlbeans.XmlString xgetGroupId();
029
030 /**
031 * True if has "groupId" element
032 */
033 boolean isSetGroupId();
034
035 /**
036 * Sets the "groupId" element
037 */
038 void setGroupId(java.lang.String groupId);
039
040 /**
041 * Sets (as xml) the "groupId" element
042 */
043 void xsetGroupId(org.apache.xmlbeans.XmlString groupId);
044
045 /**
046 * Unsets the "groupId" element
047 */
048 void unsetGroupId();
049
050 /**
051 * Gets the "artifactId" element
052 */
053 java.lang.String getArtifactId();
054
055 /**
056 * Gets (as xml) the "artifactId" element
057 */
058 org.apache.xmlbeans.XmlString xgetArtifactId();
059
060 /**
061 * True if has "artifactId" element
062 */
063 boolean isSetArtifactId();
064
065 /**
066 * Sets the "artifactId" element
067 */
068 void setArtifactId(java.lang.String artifactId);
069
070 /**
071 * Sets (as xml) the "artifactId" element
072 */
073 void xsetArtifactId(org.apache.xmlbeans.XmlString artifactId);
074
075 /**
076 * Unsets the "artifactId" element
077 */
078 void unsetArtifactId();
079
080 /**
081 * Gets the "version" element
082 */
083 java.lang.String getVersion();
084
085 /**
086 * Gets (as xml) the "version" element
087 */
088 org.apache.xmlbeans.XmlString xgetVersion();
089
090 /**
091 * True if has "version" element
092 */
093 boolean isSetVersion();
094
095 /**
096 * Sets the "version" element
097 */
098 void setVersion(java.lang.String version);
099
100 /**
101 * Sets (as xml) the "version" element
102 */
103 void xsetVersion(org.apache.xmlbeans.XmlString version);
104
105 /**
106 * Unsets the "version" element
107 */
108 void unsetVersion();
109
110 /**
111 * Gets the "module" element
112 */
113 java.lang.String getModule();
114
115 /**
116 * Gets (as xml) the "module" element
117 */
118 org.apache.xmlbeans.XmlString xgetModule();
119
120 /**
121 * True if has "module" element
122 */
123 boolean isSetModule();
124
125 /**
126 * Sets the "module" element
127 */
128 void setModule(java.lang.String module);
129
130 /**
131 * Sets (as xml) the "module" element
132 */
133 void xsetModule(org.apache.xmlbeans.XmlString module);
134
135 /**
136 * Unsets the "module" element
137 */
138 void unsetModule();
139
140 /**
141 * Gets the "type" element
142 */
143 java.lang.String getType();
144
145 /**
146 * Gets (as xml) the "type" element
147 */
148 org.apache.xmlbeans.XmlString xgetType();
149
150 /**
151 * True if has "type" element
152 */
153 boolean isSetType();
154
155 /**
156 * Sets the "type" element
157 */
158 void setType(java.lang.String type);
159
160 /**
161 * Sets (as xml) the "type" element
162 */
163 void xsetType(org.apache.xmlbeans.XmlString type);
164
165 /**
166 * Unsets the "type" element
167 */
168 void unsetType();
169
170 /**
171 * Gets the "name" element
172 */
173 java.lang.String getName();
174
175 /**
176 * Gets (as xml) the "name" element
177 */
178 org.apache.xmlbeans.XmlString xgetName();
179
180 /**
181 * True if has "name" element
182 */
183 boolean isSetName();
184
185 /**
186 * Sets the "name" element
187 */
188 void setName(java.lang.String name);
189
190 /**
191 * Sets (as xml) the "name" element
192 */
193 void xsetName(org.apache.xmlbeans.XmlString name);
194
195 /**
196 * Unsets the "name" element
197 */
198 void unsetName();
199
200 /**
201 * A factory class with static methods for creating instances
202 * of this type.
203 */
204
205 public static final class Factory
206 {
207 public static org.apache.geronimo.deployment.xbeans.PatternType newInstance() {
208 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
209
210 public static org.apache.geronimo.deployment.xbeans.PatternType newInstance(org.apache.xmlbeans.XmlOptions options) {
211 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
212
213 /** @param xmlAsString the string value to parse */
214 public static org.apache.geronimo.deployment.xbeans.PatternType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
215 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
216
217 public static org.apache.geronimo.deployment.xbeans.PatternType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
218 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
219
220 /** @param file the file from which to load an xml document */
221 public static org.apache.geronimo.deployment.xbeans.PatternType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
222 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
223
224 public static org.apache.geronimo.deployment.xbeans.PatternType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
225 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
226
227 public static org.apache.geronimo.deployment.xbeans.PatternType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
228 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
229
230 public static org.apache.geronimo.deployment.xbeans.PatternType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
231 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
232
233 public static org.apache.geronimo.deployment.xbeans.PatternType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
234 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
235
236 public static org.apache.geronimo.deployment.xbeans.PatternType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
237 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
238
239 public static org.apache.geronimo.deployment.xbeans.PatternType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
240 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
241
242 public static org.apache.geronimo.deployment.xbeans.PatternType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
243 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
244
245 public static org.apache.geronimo.deployment.xbeans.PatternType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
246 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
247
248 public static org.apache.geronimo.deployment.xbeans.PatternType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
249 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
250
251 public static org.apache.geronimo.deployment.xbeans.PatternType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
252 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
253
254 public static org.apache.geronimo.deployment.xbeans.PatternType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
255 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
256
257 /** @deprecated {@link XMLInputStream} */
258 public static org.apache.geronimo.deployment.xbeans.PatternType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
259 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
260
261 /** @deprecated {@link XMLInputStream} */
262 public static org.apache.geronimo.deployment.xbeans.PatternType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
263 return (org.apache.geronimo.deployment.xbeans.PatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
264
265 /** @deprecated {@link XMLInputStream} */
266 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 {
267 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
268
269 /** @deprecated {@link XMLInputStream} */
270 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 {
271 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
272
273 private Factory() { } // No instance of this class allowed
274 }
275 }