author | duke |
Wed, 05 Jul 2017 18:58:01 +0200 | |
changeset 17815 | b72ae39e1329 |
parent 17264 | 3aff554ad461 |
child 20581 | 65d17ea72da3 |
permissions | -rw-r--r-- |
12005 | 1 |
/* |
2 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
3 |
* |
|
4 |
* This code is free software; you can redistribute it and/or modify it |
|
5 |
* under the terms of the GNU General Public License version 2 only, as |
|
6 |
* published by the Free Software Foundation. Oracle designates this |
|
7 |
* particular file as subject to the "Classpath" exception as provided |
|
8 |
* by Oracle in the LICENSE file that accompanied this code. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
* |
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
21 |
* or visit www.oracle.com if you need additional information or have any |
|
22 |
* questions. |
|
23 |
*/ |
|
24 |
||
25 |
/* |
|
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
26 |
* Copyright (c) 2009, 2013, by Oracle Corporation. All Rights Reserved. |
12005 | 27 |
*/ |
28 |
||
29 |
package javax.xml.stream; |
|
30 |
||
31 |
import javax.xml.transform.Result; |
|
32 |
||
33 |
/** |
|
34 |
* Defines an abstract implementation of a factory for |
|
35 |
* getting XMLEventWriters and XMLStreamWriters. |
|
36 |
* |
|
37 |
* The following table defines the standard properties of this specification. |
|
38 |
* Each property varies in the level of support required by each implementation. |
|
39 |
* The level of support required is described in the 'Required' column. |
|
40 |
* |
|
41 |
* <table border="2" rules="all" cellpadding="4"> |
|
42 |
* <thead> |
|
43 |
* <tr> |
|
44 |
* <th align="center" colspan="2"> |
|
45 |
* Configuration parameters |
|
46 |
* </th> |
|
47 |
* </tr> |
|
48 |
* </thead> |
|
49 |
* <tbody> |
|
50 |
* <tr> |
|
51 |
* <th>Property Name</th> |
|
52 |
* <th>Behavior</th> |
|
53 |
* <th>Return type</th> |
|
54 |
* <th>Default Value</th> |
|
55 |
* <th>Required</th> |
|
56 |
* </tr> |
|
57 |
* <tr><td>javax.xml.stream.isRepairingNamespaces</td><td>defaults prefixes on the output side</td><td>Boolean</td><td>False</td><td>Yes</td></tr> |
|
58 |
* </tbody> |
|
59 |
* </table> |
|
60 |
* |
|
61 |
* <p>The following paragraphs describe the namespace and prefix repair algorithm:</p> |
|
62 |
* |
|
63 |
* <p>The property can be set with the following code line: |
|
64 |
* <code>setProperty("javax.xml.stream.isRepairingNamespaces",new Boolean(true|false));</code></p> |
|
65 |
* |
|
66 |
* <p>This property specifies that the writer default namespace prefix declarations. |
|
67 |
* The default value is false. </p> |
|
68 |
* |
|
69 |
* <p>If a writer isRepairingNamespaces it will create a namespace declaration |
|
70 |
* on the current StartElement for |
|
71 |
* any attribute that does not |
|
72 |
* currently have a namespace declaration in scope. If the StartElement |
|
73 |
* has a uri but no prefix specified a prefix will be assigned, if the prefix |
|
74 |
* has not been declared in a parent of the current StartElement it will be declared |
|
75 |
* on the current StartElement. If the defaultNamespace is bound and in scope |
|
76 |
* and the default namespace matches the URI of the attribute or StartElement |
|
77 |
* QName no prefix will be assigned.</p> |
|
78 |
* |
|
79 |
* <p>If an element or attribute name has a prefix, but is not |
|
80 |
* bound to any namespace URI, then the prefix will be removed |
|
81 |
* during serialization.</p> |
|
82 |
* |
|
83 |
* <p>If element and/or attribute names in the same start or |
|
84 |
* empty-element tag are bound to different namespace URIs and |
|
85 |
* are using the same prefix then the element or the first |
|
86 |
* occurring attribute retains the original prefix and the |
|
87 |
* following attributes have their prefixes replaced with a |
|
88 |
* new prefix that is bound to the namespace URIs of those |
|
89 |
* attributes. </p> |
|
90 |
* |
|
91 |
* <p>If an element or attribute name uses a prefix that is |
|
92 |
* bound to a different URI than that inherited from the |
|
93 |
* namespace context of the parent of that element and there |
|
94 |
* is no namespace declaration in the context of the current |
|
95 |
* element then such a namespace declaration is added. </p> |
|
96 |
* |
|
97 |
* <p>If an element or attribute name is bound to a prefix and |
|
98 |
* there is a namespace declaration that binds that prefix |
|
99 |
* to a different URI then that namespace declaration is |
|
100 |
* either removed if the correct mapping is inherited from |
|
101 |
* the parent context of that element, or changed to the |
|
102 |
* namespace URI of the element or attribute using that prefix.</p> |
|
103 |
* |
|
104 |
* @version 1.2 |
|
105 |
* @author Copyright (c) 2009 by Oracle Corporation. All Rights Reserved. |
|
106 |
* @see XMLInputFactory |
|
107 |
* @see XMLEventWriter |
|
108 |
* @see XMLStreamWriter |
|
109 |
* @since 1.6 |
|
110 |
*/ |
|
111 |
public abstract class XMLOutputFactory { |
|
112 |
/** |
|
113 |
* Property used to set prefix defaulting on the output side |
|
114 |
*/ |
|
115 |
public static final String IS_REPAIRING_NAMESPACES= |
|
116 |
"javax.xml.stream.isRepairingNamespaces"; |
|
117 |
||
118 |
static final String DEFAULIMPL = "com.sun.xml.internal.stream.XMLOutputFactoryImpl"; |
|
119 |
||
120 |
protected XMLOutputFactory(){} |
|
121 |
||
122 |
/** |
|
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
123 |
* Creates a new instance of the factory in exactly the same manner as the |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
124 |
* {@link #newFactory()} method. |
12005 | 125 |
* @throws FactoryConfigurationError if an instance of this factory cannot be loaded |
126 |
*/ |
|
127 |
public static XMLOutputFactory newInstance() |
|
128 |
throws FactoryConfigurationError |
|
129 |
{ |
|
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
130 |
return FactoryFinder.find(XMLOutputFactory.class, DEFAULIMPL); |
12005 | 131 |
} |
132 |
||
133 |
/** |
|
134 |
* Create a new instance of the factory. |
|
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
135 |
* <p> |
12005 | 136 |
* This static method creates a new factory instance. This method uses the |
137 |
* following ordered lookup procedure to determine the XMLOutputFactory |
|
138 |
* implementation class to load: |
|
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
139 |
* </p> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
140 |
* <ul> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
141 |
* <li> |
12005 | 142 |
* Use the javax.xml.stream.XMLOutputFactory system property. |
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
143 |
* </li> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
144 |
* <li> |
12005 | 145 |
* Use the properties file "lib/stax.properties" in the JRE directory. |
146 |
* This configuration file is in standard java.util.Properties format |
|
147 |
* and contains the fully qualified name of the implementation class |
|
148 |
* with the key being the system property defined above. |
|
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
149 |
* </li> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
150 |
* <li> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
151 |
* Use the service-provider loading facilities, defined by the |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
152 |
* {@link java.util.ServiceLoader} class, to attempt to locate and load an |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
153 |
* implementation of the service. |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
154 |
* </li> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
155 |
* <li> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
156 |
* Otherwise, the system-default implementation is returned. |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
157 |
* </li> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
158 |
* <p> |
12005 | 159 |
* Once an application has obtained a reference to a XMLOutputFactory it |
160 |
* can use the factory to configure and obtain stream instances. |
|
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
161 |
* </p> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
162 |
* <p> |
12005 | 163 |
* Note that this is a new method that replaces the deprecated newInstance() method. |
164 |
* No changes in behavior are defined by this replacement method relative to the |
|
165 |
* deprecated method. |
|
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
166 |
* </p> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
167 |
* @throws FactoryConfigurationError in case of {@linkplain |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
168 |
* java.util.ServiceConfigurationError service configuration error} or if |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
169 |
* the implementation is not available or cannot be instantiated. |
12005 | 170 |
*/ |
171 |
public static XMLOutputFactory newFactory() |
|
172 |
throws FactoryConfigurationError |
|
173 |
{ |
|
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
174 |
return FactoryFinder.find(XMLOutputFactory.class, DEFAULIMPL); |
12005 | 175 |
} |
176 |
||
177 |
/** |
|
178 |
* Create a new instance of the factory. |
|
179 |
* |
|
180 |
* @param factoryId Name of the factory to find, same as |
|
181 |
* a property name |
|
182 |
* @param classLoader classLoader to use |
|
183 |
* @return the factory implementation |
|
184 |
* @throws FactoryConfigurationError if an instance of this factory cannot be loaded |
|
185 |
* |
|
186 |
* @deprecated This method has been deprecated because it returns an |
|
187 |
* instance of XMLInputFactory, which is of the wrong class. |
|
188 |
* Use the new method {@link #newFactory(java.lang.String, |
|
189 |
* java.lang.ClassLoader)} instead. |
|
190 |
*/ |
|
191 |
public static XMLInputFactory newInstance(String factoryId, |
|
192 |
ClassLoader classLoader) |
|
193 |
throws FactoryConfigurationError { |
|
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
194 |
//do not fallback if given classloader can't find the class, throw exception |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
195 |
return FactoryFinder.find(XMLInputFactory.class, factoryId, classLoader, null); |
12005 | 196 |
} |
197 |
||
198 |
/** |
|
199 |
* Create a new instance of the factory. |
|
200 |
* If the classLoader argument is null, then the ContextClassLoader is used. |
|
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
201 |
* <p> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
202 |
* This method uses the following ordered lookup procedure to determine |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
203 |
* the XMLOutputFactory implementation class to load: |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
204 |
* </p> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
205 |
* <ul> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
206 |
* <li> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
207 |
* Use the value of the system property identified by {@code factoryId}. |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
208 |
* </li> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
209 |
* <li> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
210 |
* Use the properties file "lib/stax.properties" in the JRE directory. |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
211 |
* This configuration file is in standard java.util.Properties format |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
212 |
* and contains the fully qualified name of the implementation class |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
213 |
* with the key being the given {@code factoryId}. |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
214 |
* </li> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
215 |
* <li> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
216 |
* If {@code factoryId} is "javax.xml.stream.XMLOutputFactory", |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
217 |
* use the service-provider loading facilities, defined by the |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
218 |
* {@link java.util.ServiceLoader} class, to attempt to locate and load an |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
219 |
* implementation of the service. |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
220 |
* </li> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
221 |
* <li> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
222 |
* Otherwise, throws a {@link FactoryConfigurationError}. |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
223 |
* </li> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
224 |
* </ul> |
12005 | 225 |
* |
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
226 |
* <p> |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
227 |
* Note that this is a new method that replaces the deprecated |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
228 |
* {@link #newInstance(java.lang.String, java.lang.ClassLoader) |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
229 |
* newInstance(String factoryId, ClassLoader classLoader)} method. |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
230 |
* No changes in behavior are defined by this replacement method relative |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
231 |
* to the deprecated method. |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
232 |
* </p> |
12005 | 233 |
* |
234 |
* @param factoryId Name of the factory to find, same as |
|
235 |
* a property name |
|
236 |
* @param classLoader classLoader to use |
|
237 |
* @return the factory implementation |
|
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
238 |
* @throws FactoryConfigurationError in case of {@linkplain |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
239 |
* java.util.ServiceConfigurationError service configuration error} or if |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
240 |
* the implementation is not available or cannot be instantiated. |
12005 | 241 |
*/ |
242 |
public static XMLOutputFactory newFactory(String factoryId, |
|
243 |
ClassLoader classLoader) |
|
244 |
throws FactoryConfigurationError { |
|
17264
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
245 |
//do not fallback if given classloader can't find the class, throw exception |
3aff554ad461
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
dfuchs
parents:
12457
diff
changeset
|
246 |
return FactoryFinder.find(XMLOutputFactory.class, factoryId, classLoader, null); |
12005 | 247 |
} |
248 |
||
249 |
/** |
|
250 |
* Create a new XMLStreamWriter that writes to a writer |
|
251 |
* @param stream the writer to write to |
|
252 |
* @throws XMLStreamException |
|
253 |
*/ |
|
254 |
public abstract XMLStreamWriter createXMLStreamWriter(java.io.Writer stream) throws XMLStreamException; |
|
255 |
||
256 |
/** |
|
257 |
* Create a new XMLStreamWriter that writes to a stream |
|
258 |
* @param stream the stream to write to |
|
259 |
* @throws XMLStreamException |
|
260 |
*/ |
|
261 |
public abstract XMLStreamWriter createXMLStreamWriter(java.io.OutputStream stream) throws XMLStreamException; |
|
262 |
||
263 |
/** |
|
264 |
* Create a new XMLStreamWriter that writes to a stream |
|
265 |
* @param stream the stream to write to |
|
266 |
* @param encoding the encoding to use |
|
267 |
* @throws XMLStreamException |
|
268 |
*/ |
|
269 |
public abstract XMLStreamWriter createXMLStreamWriter(java.io.OutputStream stream, |
|
270 |
String encoding) throws XMLStreamException; |
|
271 |
||
272 |
/** |
|
273 |
* Create a new XMLStreamWriter that writes to a JAXP result. This method is optional. |
|
274 |
* @param result the result to write to |
|
275 |
* @throws UnsupportedOperationException if this method is not |
|
276 |
* supported by this XMLOutputFactory |
|
277 |
* @throws XMLStreamException |
|
278 |
*/ |
|
279 |
public abstract XMLStreamWriter createXMLStreamWriter(Result result) throws XMLStreamException; |
|
280 |
||
281 |
||
282 |
/** |
|
283 |
* Create a new XMLEventWriter that writes to a JAXP result. This method is optional. |
|
284 |
* @param result the result to write to |
|
285 |
* @throws UnsupportedOperationException if this method is not |
|
286 |
* supported by this XMLOutputFactory |
|
287 |
* @throws XMLStreamException |
|
288 |
*/ |
|
289 |
public abstract XMLEventWriter createXMLEventWriter(Result result) throws XMLStreamException; |
|
290 |
||
291 |
/** |
|
292 |
* Create a new XMLEventWriter that writes to a stream |
|
293 |
* @param stream the stream to write to |
|
294 |
* @throws XMLStreamException |
|
295 |
*/ |
|
296 |
public abstract XMLEventWriter createXMLEventWriter(java.io.OutputStream stream) throws XMLStreamException; |
|
297 |
||
298 |
||
299 |
||
300 |
/** |
|
301 |
* Create a new XMLEventWriter that writes to a stream |
|
302 |
* @param stream the stream to write to |
|
303 |
* @param encoding the encoding to use |
|
304 |
* @throws XMLStreamException |
|
305 |
*/ |
|
306 |
public abstract XMLEventWriter createXMLEventWriter(java.io.OutputStream stream, |
|
307 |
String encoding) throws XMLStreamException; |
|
308 |
||
309 |
/** |
|
310 |
* Create a new XMLEventWriter that writes to a writer |
|
311 |
* @param stream the stream to write to |
|
312 |
* @throws XMLStreamException |
|
313 |
*/ |
|
314 |
public abstract XMLEventWriter createXMLEventWriter(java.io.Writer stream) throws XMLStreamException; |
|
315 |
||
316 |
/** |
|
317 |
* Allows the user to set specific features/properties on the underlying implementation. |
|
318 |
* @param name The name of the property |
|
319 |
* @param value The value of the property |
|
320 |
* @throws java.lang.IllegalArgumentException if the property is not supported |
|
321 |
*/ |
|
322 |
public abstract void setProperty(java.lang.String name, |
|
323 |
Object value) |
|
324 |
throws IllegalArgumentException; |
|
325 |
||
326 |
/** |
|
327 |
* Get a feature/property on the underlying implementation |
|
328 |
* @param name The name of the property |
|
329 |
* @return The value of the property |
|
330 |
* @throws java.lang.IllegalArgumentException if the property is not supported |
|
331 |
*/ |
|
332 |
public abstract Object getProperty(java.lang.String name) |
|
333 |
throws IllegalArgumentException; |
|
334 |
||
335 |
/** |
|
336 |
* Query the set of properties that this factory supports. |
|
337 |
* |
|
338 |
* @param name The name of the property (may not be null) |
|
339 |
* @return true if the property is supported and false otherwise |
|
340 |
*/ |
|
341 |
public abstract boolean isPropertySupported(String name); |
|
342 |
} |