* Prepare the attributes on the stylesheet element
*/
public void prepareAttributes() throws TransformerConfigurationException {
AttributeCollection atts = getAttributeList();
for (int a = 0; a < atts.getLength(); a++) {
int nc = atts.getNameCode(a);
String f = getNamePool().getClarkName(nc);
if (f == StandardNames.VERSION) {
processVersionAttribute(f);
} else if (f == StandardNames.ID) {
//
} else if (f == StandardNames.EXTENSION_ELEMENT_PREFIXES) {
//
} else if (f == StandardNames.EXCLUDE_RESULT_PREFIXES) {
//
} else if (f == StandardNames.DEFAULT_VALIDATION) {
defaultValidation = Validation.getCode(atts.getValue(a));
if (defaultValidation == Validation.INVALID) {
compileError("Invalid value for default-validation attribute. " +
"Permitted values are (strict, lax, preserve, strip)");
}
} else {