org.apache.batik.dom.svg
public class SVGOMAnimatedString extends AbstractSVGAnimatedValue implements SVGAnimatedString
| Field Summary | |
|---|---|
| protected String | animVal
The current animated value. |
| Constructor Summary | |
|---|---|
| SVGOMAnimatedString(AbstractElement elt, String ns, String ln)
Creates a new SVGOMAnimatedString. | |
| Method Summary | |
|---|---|
| void | attrAdded(Attr node, String newv)
Called when an Attr node has been added. |
| void | attrModified(Attr node, String oldv, String newv)
Called when an Attr node has been modified. |
| void | attrRemoved(Attr node, String oldv)
Called when an Attr node has been removed. |
| String | getAnimVal()
DOM: Implements SVGAnimatedString#getAnimVal(). |
| String | getBaseVal()
DOM: Implements SVGAnimatedString#getBaseVal(). |
| AnimatableValue | getUnderlyingValue(AnimationTarget target)
Returns the base value of the attribute as an AnimatableValue. |
| void | setBaseVal(String baseVal)
DOM: Implements SVGAnimatedString#setBaseVal(String). |
| protected void | updateAnimatedValue(AnimatableValue val)
Updates the animated value with the given AnimatableValue. |
Parameters: elt The associated element. ns The attribute's namespace URI. ln The attribute's local name.