Home | History | Annotate | Download | only in processor

Lines Matching refs:attrDef

319       XSLTAttributeDef attrDef = def.getAttributeDef(attrUri, attrLocalName);
321 if (null == attrDef)
344 if(attrDef.getName().compareTo("*")==0 && handler.getStylesheetProcessor().isSecureProcessing())
356 boolean success = attrDef.setAttrValue(handler, attrUri, attrLocalName,
362 processedDefs.add(attrDef);
364 errorDefs.add(attrDef);
374 XSLTAttributeDef attrDef = attrDefs[i];
375 String defVal = attrDef.getDefault();
379 if (!processedDefs.contains(attrDef))
381 attrDef.setDefAttrValue(handler, target);
385 if (attrDef.getRequired())
387 if ((!processedDefs.contains(attrDef)) && (!errorDefs.contains(attrDef)))
391 attrDef.getName() }), null);