Home | History | Annotate | Download | only in validation

Lines Matching defs:factoryClassName

204             String factoryClassName = CacheHolder.cacheProps.getProperty(propertyName);
205 if (debug) debugPrintln("found " + factoryClassName + " in $java.home/jaxp.properties");
207 if (factoryClassName != null) {
208 sf = createInstance(factoryClassName);
343 String factoryClassName = null;
348 factoryClassName = rd.readLine();
353 if (factoryClassName != null) {
355 int hashIndex = factoryClassName.indexOf('#');
357 factoryClassName = factoryClassName.substring(0, hashIndex);
361 factoryClassName = factoryClassName.trim();
364 if (factoryClassName.length() == 0) {
370 SchemaFactory foundFactory = (SchemaFactory) createInstance(factoryClassName);