102103104105106107108
* @see XmlStreamWriter */ public static XmlStreamWriter newXmlWriter( @Nonnull OutputStream out ) throws IOException { return new XmlStreamWriter( out ); }
116117118119120121122
* @see XmlStreamWriter */ public static XmlStreamWriter newXmlWriter( @Nonnull File file ) throws IOException { return new XmlStreamWriter( file ); }