1 package com.thaiopensource.relaxng.parse;2 3 public interface SubParser {4 ParsedPattern parseInclude(String uri, SchemaBuilder f, IncludedGrammar g)5 throws BuildException, IllegalSchemaException;6 ParsedPattern parseExternal(String uri, SchemaBuilder f, Scope s)7 throws BuildException, IllegalSchemaException;8 }9