14521453145414551456145714581459
_verifyWriteAttr(name); } try { _xmlWriter.writeAttribute(name, enc); } catch (IOException ioe) { throw new IoStreamException(ioe); } }
14631464146514661467146814691470
{ WName name = _symbols.findSymbol("xmlns"); try { _xmlWriter.writeAttribute(name, uri); } catch (IOException ioe) { throw new IoStreamException(ioe); } }
14741475147614771478147914801481
{ WName name = _symbols.findSymbol("xmlns", prefix); try { _xmlWriter.writeAttribute(name, uri); } catch (IOException ioe) { throw new IoStreamException(ioe); } }
15231524152515261527152815291530
_config.setActualEncodingIfNotSet(encoding); } try { _xmlWriter.writeXmlDeclaration(version, encoding, standAlone); } catch (IOException ioe) { throw new IoStreamException(ioe); } }
154415451546154715481549155015511552
_currElem = _currElem.createChild(name); } try { _xmlWriter.writeStartTagStart(name); } catch (IOException ioe) { throw new IoStreamException(ioe); } _stateEmptyElement = isEmpty; }
157015711572157315741575157615771578
_currElem = _currElem.createChild(name, uri); } try { _xmlWriter.writeStartTagStart(name); } catch (IOException ioe) { throw new IoStreamException(ioe); } _stateEmptyElement = isEmpty; }
1745174617471748174917501751
} protected static void throwFromIOE(IOException ioe) throws XMLStreamException { throw new IoStreamException(ioe); }
18361837183818391840184118421843
* and release its buffers, and close components it uses if any. */ try { _xmlWriter.close(forceRealClose); } catch (IOException ie) { throw new IoStreamException(ie); } }
430431432433434435436437438439440
{ // First, let's flush any output we may have, to make debugging easier try { flush(); } catch (IOException ioe) { throw new IoStreamException(ioe); } if (c == 0) { reportNwfContent("Invalid null character in text to output"); }
464465466467468469470471472473
{ // First, let's flush any output we may have, to make debugging easier try { flush(); } catch (IOException ioe) { throw new IoStreamException(ioe); } throw new XMLStreamException(msg); }