Home | History | Annotate | Download | only in domts

Lines Matching refs:factory

30   private DOMTestDocumentBuilderFactory factory;
37 * @param factory
40 public DOMTest(DOMTestDocumentBuilderFactory factory) {
41 if (factory == null) {
42 throw new NullPointerException("factory");
44 this.factory = factory;
49 * factory to meet requirements on the parser configuration. setFactory
53 factory = null;
59 protected void setFactory(DOMTestDocumentBuilderFactory factory) {
60 this.factory = factory;
64 return factory.hasFeature(feature, version);
68 return setting.hasSetting(factory);
72 return factory;
76 return factory.getDOMImplementation();
80 String docURI = factory.addExtension(baseURI);
202 Document doc = factory.load(resolveURI(docURI));
225 return factory.createXPathEvaluator(doc);
241 return factory.isCoalescing();
245 return factory.isExpandEntityReferences();
249 return factory.isIgnoringElementContentWhitespace();
253 return factory.isNamespaceAware();
257 return factory.isValidating();
269 return factory.getContentType();