KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > thaiopensource > relaxng > parse > SubParser


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