// Store the inheritable values so that they are available
// should nested elements need to inherit values.
elementStack.setPropertyValues(inheritableValues);
if (logger.isDebugEnabled()) {
DebugStyles debugStyles = new DebugStyles(INTERESTING, false, true);
String debug = "Styled {" + namespace + "} " + localName;
String value = attributes.getAttributeValue(null, "class");
if (value != null) {
debug += " class='" + value + "'";
}
value = attributes.getAttributeValue(null, "id");
if (value != null) {
debug += " id='" + value + "'";
}
debug += " with " + debugStyles.output(styles, "");
logger.debug(debug);
}
}