17 lines
535 B
Java
17 lines
535 B
Java
package org.apache.batik.dom.svg;
|
|
|
|
import org.apache.batik.anim.values.AnimatableValue;
|
|
import org.apache.batik.dom.anim.AnimationTarget;
|
|
|
|
public interface AnimatedLiveAttributeValue extends LiveAttributeValue {
|
|
void addAnimatedAttributeListener(AnimatedAttributeListener animatedAttributeListener);
|
|
|
|
String getLocalName();
|
|
|
|
String getNamespaceURI();
|
|
|
|
AnimatableValue getUnderlyingValue(AnimationTarget animationTarget);
|
|
|
|
void removeAnimatedAttributeListener(AnimatedAttributeListener animatedAttributeListener);
|
|
}
|