001 package com.thaiopensource.relaxng.parse; 002 003 public interface Scope { 004 ParsedPattern makeParentRef(String name, Location loc, Annotations anno) throws BuildException; 005 ParsedPattern makeRef(String name, Location loc, Annotations anno) throws BuildException; 006 }