XMLEventWriter

package javax.xml.stream;

public interface XMLEventWriter extends XMLEventConsumer {

  public void flush() throws XMLStreamException;
  public void close() throws XMLStreamException;

  public void add(XMLEvent event) throws XMLStreamException;
  public void add(XMLEventReader reader) throws XMLStreamException;

  public String getPrefix(String uri) throws XMLStreamException;
  public void   setPrefix(String prefix, String uri) throws XMLStreamException;
  public void   setDefaultNamespace(String uri) throws XMLStreamException;
  public void   setNamespaceContext(NamespaceContext context)
    throws XMLStreamException;
  public NamespaceContext getNamespaceContext();

}

Previous | Next | Top | Cafe con Leche

Copyright 2000-2004 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified January 15, 2004