1 16 17 package org.apache.xerces.parsers; 18 19 import org.apache.xerces.impl.Constants; 20 import org.apache.xerces.impl.dv.DTDDVFactory; 21 import org.apache.xerces.util.SymbolTable; 22 import org.apache.xerces.xni.parser.XMLParserConfiguration; 23 24 27 public abstract class XMLGrammarParser 28 extends XMLParser { 29 30 34 35 protected DTDDVFactory fDatatypeValidatorFactory; 36 37 41 46 protected XMLGrammarParser(SymbolTable symbolTable) { 47 super((XMLParserConfiguration)ObjectFactory.createObject( 48 "org.apache.xerces.xni.parser.XMLParserConfiguration", 49 "org.apache.xerces.parsers.XIncludeAwareParserConfiguration" 50 )); 51 fConfiguration.setProperty(Constants.XERCES_PROPERTY_PREFIX+Constants.SYMBOL_TABLE_PROPERTY, symbolTable); 52 } 53 54 } | Popular Tags |