use of org.w3c.dom.events.MutationEvent in project poi by apache.
the class SignatureMarshalListener method handleEvent.
public void handleEvent(Event e) {
if (!(e instanceof MutationEvent))
return;
MutationEvent mutEvt = (MutationEvent) e;
EventTarget et = mutEvt.getTarget();
if (!(et instanceof Element))
return;
handleElement((Element) et);
}
Aggregations