001 /*
002 * XML Type: environmentType
003 * Namespace: http://geronimo.apache.org/xml/ns/deployment-1.2
004 * Java type: org.apache.geronimo.deployment.xbeans.EnvironmentType
005 *
006 * Automatically generated - do not modify.
007 */
008 package org.apache.geronimo.deployment.xbeans;
009
010
011 /**
012 * An XML environmentType(@http://geronimo.apache.org/xml/ns/deployment-1.2).
013 *
014 * This is a complex type.
015 */
016 public interface EnvironmentType extends org.apache.xmlbeans.XmlObject
017 {
018 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
019 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(EnvironmentType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEDE7C0CB21AFE6786DC0D3F684755625").resolveHandle("environmenttype7bb4type");
020
021 /**
022 * Gets the "moduleId" element
023 */
024 org.apache.geronimo.deployment.xbeans.ArtifactType getModuleId();
025
026 /**
027 * True if has "moduleId" element
028 */
029 boolean isSetModuleId();
030
031 /**
032 * Sets the "moduleId" element
033 */
034 void setModuleId(org.apache.geronimo.deployment.xbeans.ArtifactType moduleId);
035
036 /**
037 * Appends and returns a new empty "moduleId" element
038 */
039 org.apache.geronimo.deployment.xbeans.ArtifactType addNewModuleId();
040
041 /**
042 * Unsets the "moduleId" element
043 */
044 void unsetModuleId();
045
046 /**
047 * Gets the "dependencies" element
048 */
049 org.apache.geronimo.deployment.xbeans.DependenciesType getDependencies();
050
051 /**
052 * True if has "dependencies" element
053 */
054 boolean isSetDependencies();
055
056 /**
057 * Sets the "dependencies" element
058 */
059 void setDependencies(org.apache.geronimo.deployment.xbeans.DependenciesType dependencies);
060
061 /**
062 * Appends and returns a new empty "dependencies" element
063 */
064 org.apache.geronimo.deployment.xbeans.DependenciesType addNewDependencies();
065
066 /**
067 * Unsets the "dependencies" element
068 */
069 void unsetDependencies();
070
071 /**
072 * Gets the "hidden-classes" element
073 */
074 org.apache.geronimo.deployment.xbeans.ClassFilterType getHiddenClasses();
075
076 /**
077 * True if has "hidden-classes" element
078 */
079 boolean isSetHiddenClasses();
080
081 /**
082 * Sets the "hidden-classes" element
083 */
084 void setHiddenClasses(org.apache.geronimo.deployment.xbeans.ClassFilterType hiddenClasses);
085
086 /**
087 * Appends and returns a new empty "hidden-classes" element
088 */
089 org.apache.geronimo.deployment.xbeans.ClassFilterType addNewHiddenClasses();
090
091 /**
092 * Unsets the "hidden-classes" element
093 */
094 void unsetHiddenClasses();
095
096 /**
097 * Gets the "non-overridable-classes" element
098 */
099 org.apache.geronimo.deployment.xbeans.ClassFilterType getNonOverridableClasses();
100
101 /**
102 * True if has "non-overridable-classes" element
103 */
104 boolean isSetNonOverridableClasses();
105
106 /**
107 * Sets the "non-overridable-classes" element
108 */
109 void setNonOverridableClasses(org.apache.geronimo.deployment.xbeans.ClassFilterType nonOverridableClasses);
110
111 /**
112 * Appends and returns a new empty "non-overridable-classes" element
113 */
114 org.apache.geronimo.deployment.xbeans.ClassFilterType addNewNonOverridableClasses();
115
116 /**
117 * Unsets the "non-overridable-classes" element
118 */
119 void unsetNonOverridableClasses();
120
121 /**
122 * Gets the "inverse-classloading" element
123 */
124 org.apache.geronimo.deployment.xbeans.EmptyType getInverseClassloading();
125
126 /**
127 * True if has "inverse-classloading" element
128 */
129 boolean isSetInverseClassloading();
130
131 /**
132 * Sets the "inverse-classloading" element
133 */
134 void setInverseClassloading(org.apache.geronimo.deployment.xbeans.EmptyType inverseClassloading);
135
136 /**
137 * Appends and returns a new empty "inverse-classloading" element
138 */
139 org.apache.geronimo.deployment.xbeans.EmptyType addNewInverseClassloading();
140
141 /**
142 * Unsets the "inverse-classloading" element
143 */
144 void unsetInverseClassloading();
145
146 /**
147 * Gets the "suppress-default-environment" element
148 */
149 org.apache.geronimo.deployment.xbeans.EmptyType getSuppressDefaultEnvironment();
150
151 /**
152 * True if has "suppress-default-environment" element
153 */
154 boolean isSetSuppressDefaultEnvironment();
155
156 /**
157 * Sets the "suppress-default-environment" element
158 */
159 void setSuppressDefaultEnvironment(org.apache.geronimo.deployment.xbeans.EmptyType suppressDefaultEnvironment);
160
161 /**
162 * Appends and returns a new empty "suppress-default-environment" element
163 */
164 org.apache.geronimo.deployment.xbeans.EmptyType addNewSuppressDefaultEnvironment();
165
166 /**
167 * Unsets the "suppress-default-environment" element
168 */
169 void unsetSuppressDefaultEnvironment();
170
171 /**
172 * A factory class with static methods for creating instances
173 * of this type.
174 */
175
176 public static final class Factory
177 {
178 public static org.apache.geronimo.deployment.xbeans.EnvironmentType newInstance() {
179 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
180
181 public static org.apache.geronimo.deployment.xbeans.EnvironmentType newInstance(org.apache.xmlbeans.XmlOptions options) {
182 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
183
184 /** @param xmlAsString the string value to parse */
185 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
186 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
187
188 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
189 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
190
191 /** @param file the file from which to load an xml document */
192 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
193 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
194
195 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
196 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
197
198 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
199 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
200
201 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
202 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
203
204 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
205 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
206
207 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
208 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
209
210 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
211 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
212
213 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
214 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
215
216 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
217 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
218
219 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
220 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
221
222 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
223 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
224
225 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
226 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
227
228 /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
229 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
230 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
231
232 /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
233 public static org.apache.geronimo.deployment.xbeans.EnvironmentType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
234 return (org.apache.geronimo.deployment.xbeans.EnvironmentType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
235
236 /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
237 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 {
238 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
239
240 /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
241 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 {
242 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
243
244 private Factory() { } // No instance of this class allowed
245 }
246 }