org.apache.batik.dom.svg
public class SVGOMAnimatedRect extends AbstractSVGAnimatedValue implements SVGAnimatedRect
Nested Class Summary | |
---|---|
protected class | SVGOMAnimatedRect.AnimSVGRect
This class represents the SVGRect returned by getAnimVal(). |
protected class | SVGOMAnimatedRect.BaseSVGRect
This class represents the SVGRect returned by getBaseVal(). |
Field Summary | |
---|---|
protected SVGOMAnimatedRect.AnimSVGRect | animVal
The animated value. |
protected SVGOMAnimatedRect.BaseSVGRect | baseVal
The base value. |
protected boolean | changing
Whether the value is changing. |
Constructor Summary | |
---|---|
SVGOMAnimatedRect(AbstractElement elt, String ns, String ln)
Creates a new SVGOMAnimatedRect. |
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. |
SVGRect | getAnimVal()
DOM: Implements {@link SVGAnimatedRect#getAnimVal()}. |
SVGRect | getBaseVal()
DOM: Implements {@link SVGAnimatedRect#getBaseVal()}. |
AnimatableValue | getUnderlyingValue(AnimationTarget target)
Returns the base value of the attribute as an {@link AnimatableValue}. |
protected void | updateAnimatedValue(AnimatableValue val)
Updates the animated value with the given {@link AnimatableValue}. |
Parameters: elt The associated element. ns The attribute's namespace URI. ln The attribute's local name.