package com.jclark.xsl.sax;

import org.xml.sax.*;
import java.io.IOException;

public interface OutputDocumentHandler extends DocumentHandler {
  DocumentHandler init(Destination dest, AttributeList atts) throws SAXException, IOException;
}
