niagara-ax/decompiled/org/apache/batik/bridge/BridgeUpdateHandler.java
2026-03-17 13:31:18 -07:00

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);
}