Package org.apache.batik.anim.dom
Interface AnimatedLiveAttributeValue
-
- All Superinterfaces:
LiveAttributeValue
- All Known Implementing Classes:
AbstractSVGAnimatedLength,AbstractSVGAnimatedValue,SVGOMAnimatedBoolean,SVGOMAnimatedEnumeration,SVGOMAnimatedInteger,SVGOMAnimatedLength,SVGOMAnimatedLengthList,SVGOMAnimatedMarkerOrientValue,SVGOMAnimatedNumber,SVGOMAnimatedNumberList,SVGOMAnimatedPathData,SVGOMAnimatedPoints,SVGOMAnimatedPreserveAspectRatio,SVGOMAnimatedRect,SVGOMAnimatedString,SVGOMAnimatedTransformList
public interface AnimatedLiveAttributeValue extends LiveAttributeValue
An interface forLiveAttributeValues that have an animated value component.- Version:
- $Id: AnimatedLiveAttributeValue.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddAnimatedAttributeListener(AnimatedAttributeListener aal)Adds a listener for changes to the animated value.java.lang.StringgetLocalName()Returns the local name of this animated live attribute.java.lang.StringgetNamespaceURI()Returns the namespace URI of this animated live attribute.AnimatableValuegetUnderlyingValue(AnimationTarget target)Returns the base value of the attribute as anAnimatableValue.voidremoveAnimatedAttributeListener(AnimatedAttributeListener aal)Removes a listener for changes to the animated value.-
Methods inherited from interface org.apache.batik.dom.svg.LiveAttributeValue
attrAdded, attrModified, attrRemoved
-
-
-
-
Method Detail
-
getNamespaceURI
java.lang.String getNamespaceURI()
Returns the namespace URI of this animated live attribute.
-
getLocalName
java.lang.String getLocalName()
Returns the local name of this animated live attribute.
-
getUnderlyingValue
AnimatableValue getUnderlyingValue(AnimationTarget target)
Returns the base value of the attribute as anAnimatableValue.
-
addAnimatedAttributeListener
void addAnimatedAttributeListener(AnimatedAttributeListener aal)
Adds a listener for changes to the animated value.
-
removeAnimatedAttributeListener
void removeAnimatedAttributeListener(AnimatedAttributeListener aal)
Removes a listener for changes to the animated value.
-
-