org.exist.xquery.modules.xslfo.ProcessorAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exist-xslfo Show documentation
Show all versions of exist-xslfo Show documentation
eXist-db XQuery XSL:FO Module
package org.exist.xquery.modules.xslfo;
import java.io.OutputStream;
import java.util.Properties;
import org.exist.storage.DBBroker;
import org.exist.xquery.XPathException;
import org.exist.xquery.value.NodeValue;
import org.xml.sax.ContentHandler;
import org.xml.sax.SAXException;
/**
* @author Adam Retter
*/
public interface ProcessorAdapter {
public ContentHandler getContentHandler(DBBroker broker, NodeValue configFile, Properties parameters, String mimeType, OutputStream os) throws XPathException, SAXException;
public void cleanup();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy