Handle the beginning of an XML element.
// --------------------------------------------------------- Public Methods
for (int i = 0; i < attributes.getLength(); i++) {
String name = attributes.getLocalName(i);
if ("".equals(name)) {
name = attributes.getQName(i);
}
String value = attributes.getValue(i);
if ( !excludes.containsKey(name))
IntrospectionUtils.setProperty(digester.peek(), name, value);
}