1 57 package com.sun.org.apache.xerces.internal.jaxp.validation.xs; 58 59 import com.sun.org.apache.xerces.internal.jaxp.validation.InsulatedValidatorComponent; 60 import com.sun.org.apache.xerces.internal.jaxp.validation.XercesSchema; 61 import com.sun.org.apache.xerces.internal.xni.grammars.XMLGrammarPool; 62 63 72 class SchemaImpl extends XercesSchema { 73 74 private final XMLGrammarPool pool; 75 76 79 private final boolean ignoreLocationHints; 80 81 82 SchemaImpl( XMLGrammarPool pool, boolean _ignoreLocationHints ) { 83 this.pool = pool; 84 this.ignoreLocationHints = _ignoreLocationHints; 85 } 86 87 public InsulatedValidatorComponent newXNIValidator() { 88 return new InsulatedSchemaValidator(pool,ignoreLocationHints); 89 } 90 } 91 | Popular Tags |