24 lines
730 B
Java
24 lines
730 B
Java
package org.apache.batik.bridge;
|
|
|
|
import org.apache.batik.css.engine.CSSEngineEvent;
|
|
import org.apache.batik.dom.svg.AnimatedLiveAttributeValue;
|
|
import org.w3c.dom.events.MutationEvent;
|
|
|
|
public interface BridgeUpdateHandler {
|
|
void dispose();
|
|
|
|
void handleAnimatedAttributeChanged(AnimatedLiveAttributeValue animatedLiveAttributeValue);
|
|
|
|
void handleCSSEngineEvent(CSSEngineEvent cSSEngineEvent);
|
|
|
|
void handleDOMAttrModifiedEvent(MutationEvent mutationEvent);
|
|
|
|
void handleDOMCharacterDataModified(MutationEvent mutationEvent);
|
|
|
|
void handleDOMNodeInsertedEvent(MutationEvent mutationEvent);
|
|
|
|
void handleDOMNodeRemovedEvent(MutationEvent mutationEvent);
|
|
|
|
void handleOtherAnimationChanged(String str);
|
|
}
|