KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.thaiopensource.relaxng.parse;
2
3 public interface Scope {
4   ParsedPattern makeParentRef(String JavaDoc name, Location loc, Annotations anno) throws BuildException;
5   ParsedPattern makeRef(String JavaDoc name, Location loc, Annotations anno) throws BuildException;
6 }
7
Popular Tags