Home | History | Annotate | Download | only in xpath

Lines Matching defs:factoryClassName

184             String factoryClassName = CacheHolder.cacheProps.getProperty(propertyName);
185 if (debug) debugPrintln("found " + factoryClassName + " in $java.home/jaxp.properties");
187 if (factoryClassName != null) {
188 xpf = createInstance(factoryClassName);
277 String factoryClassName;
282 factoryClassName = rd.readLine();
287 if (factoryClassName != null) {
289 int hashIndex = factoryClassName.indexOf('#');
291 factoryClassName = factoryClassName.substring(0, hashIndex);
295 factoryClassName = factoryClassName.trim();
298 if (factoryClassName.length() == 0) {
304 XPathFactory foundFactory = createInstance(factoryClassName);