1 package com.thaiopensource.validate; 2 3 import com.thaiopensource.util.PropertyMap; 4 import com.thaiopensource.validate.IncorrectSchemaException; 5 import org.xml.sax.InputSource ; 6 import org.xml.sax.SAXException ; 7 8 import java.io.IOException ; 9 10 14 public interface SchemaReader { 15 public static final String BASE_URI = "http://www.thaiopensource.com/validate/"; 16 30 Schema createSchema(InputSource in, PropertyMap properties) 31 throws IOException , SAXException , IncorrectSchemaException; 32 33 Option getOption(String uri); 34 } 35 | Popular Tags |