return;
} else
//3.处理AttributeEvent
if (e instanceof AttributeEvent) {
this.activateStack.createStack();
AttributeEvent ee = (AttributeEvent) e;
String prefix = ee.getName().getPrefix();
prefix = prefix == null ? "" : prefix;
if (prefix.equals("") == true) {
prefix = ee.getCurrentElement().getPrefix();
}
prefix = prefix == null ? "" : prefix;
//
NameSpace ns = this.activateStack.getNameSpace(prefix);
ns.appendXPath(ee.getElementName(), true);
this.issueEvent(e, this.activateStack);
ns.removeXPath();
this.activateStack.dropStack();
return;
} else