* @return writer configured for the specified namespaces
* @throws IOException on error setting output
*/
public IXMLWriter getWriter(IOutByteBuffer buff, String charcode, String[] uris) throws IOException {
if (m_writer == null) {
m_writer = new JibxWriter(uris, buff);
} else {
m_writer.setNamespaceUris(uris);
m_writer.setBuffer(buff);
}
return m_writer;