001 package com.thaiopensource.relaxng.parse; 002 003 public interface SubParser { 004 ParsedPattern parseInclude(String uri, SchemaBuilder f, IncludedGrammar g) 005 throws BuildException, IllegalSchemaException; 006 ParsedPattern parseExternal(String uri, SchemaBuilder f, Scope s) 007 throws BuildException, IllegalSchemaException; 008 }