All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.daisy.common.stax.BaseURIAwareXMLStreamWriter Maven / Gradle / Ivy

There is a newer version: 6.1.0
Show newest version
package org.daisy.common.stax;

import java.net.URI;

import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamWriter;

public interface BaseURIAwareXMLStreamWriter extends XMLStreamWriter {
	
	public URI getBaseURI() throws XMLStreamException;
	
	public void setBaseURI(URI baseURI) throws XMLStreamException;
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy