1 18 package org.apache.batik.bridge; 19 20 import org.apache.batik.css.engine.CSSEngineEvent; 21 import org.w3c.dom.events.MutationEvent ; 22 23 30 public interface BridgeUpdateHandler { 31 32 35 void handleDOMAttrModifiedEvent(MutationEvent evt); 36 37 40 void handleDOMNodeInsertedEvent(MutationEvent evt); 41 42 45 void handleDOMNodeRemovedEvent(MutationEvent evt); 46 47 51 void handleDOMCharacterDataModified(MutationEvent evt); 52 53 56 void handleCSSEngineEvent(CSSEngineEvent evt); 57 58 61 void dispose(); 62 } 63 | Popular Tags |