1 package com.thaiopensource.relaxng.parse; 2 3 public interface DataPatternBuilder { 4 void addParam(String name, String value, Context context, String ns, Location loc, Annotations anno) 5 throws BuildException; 6 void annotation(ParsedElementAnnotation ea); 7 ParsedPattern makePattern(Location loc, Annotations anno) 8 throws BuildException; 9 ParsedPattern makePattern(ParsedPattern except, Location loc, Annotations anno) 10 throws BuildException; 11 } 12 | Popular Tags |