1 57 58 package com.sun.org.apache.xerces.internal.parsers; 59 60 import com.sun.org.apache.xerces.internal.impl.Constants; 61 import com.sun.org.apache.xerces.internal.impl.dv.DTDDVFactory; 62 import com.sun.org.apache.xerces.internal.util.SymbolTable; 63 import com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration; 64 65 68 public abstract class XMLGrammarParser 69 extends XMLParser { 70 71 75 76 protected DTDDVFactory fDatatypeValidatorFactory; 77 78 82 87 protected XMLGrammarParser(SymbolTable symbolTable) { 88 super((XMLParserConfiguration)ObjectFactory.createObject( 89 "com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration", 90 "com.sun.org.apache.xerces.internal.parsers.XML11Configuration" 91 )); 92 fConfiguration.setProperty(Constants.XERCES_PROPERTY_PREFIX+Constants.SYMBOL_TABLE_PROPERTY, symbolTable); 93 } 94 95 } | Popular Tags |