001 package com.thaiopensource.relaxng.parse;
002
003 import org.xml.sax.XMLReader;
004 import org.xml.sax.SAXException;
005
006 public interface ParseReceiver extends SubParser {
007 ParsedPatternFuture installHandlers(XMLReader xr, SchemaBuilder schemaBuilder, Scope scope) throws SAXException;
008 }