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