Package org.apache.batik.dom.svg
Interface LiveAttributeValue
-
- All Known Subinterfaces:
AnimatedLiveAttributeValue
- All Known Implementing Classes:
AbstractSVGAnimatedLength
,AbstractSVGAnimatedValue
,SVGOMAnimatedBoolean
,SVGOMAnimatedEnumeration
,SVGOMAnimatedInteger
,SVGOMAnimatedLength
,SVGOMAnimatedLengthList
,SVGOMAnimatedMarkerOrientValue
,SVGOMAnimatedNumber
,SVGOMAnimatedNumberList
,SVGOMAnimatedPathData
,SVGOMAnimatedPoints
,SVGOMAnimatedPreserveAspectRatio
,SVGOMAnimatedRect
,SVGOMAnimatedString
,SVGOMAnimatedTransformList
,SVGStylableElement.PresentationAttributeColorValue
,SVGStylableElement.PresentationAttributePaintValue
,SVGStylableElement.PresentationAttributeValue
,SVGStylableElement.StyleDeclaration
public interface LiveAttributeValue
This interface should be implemented by all the attribute values objects that must be updated when the attribute node is modified.- Version:
- $Id: LiveAttributeValue.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
attrAdded(org.w3c.dom.Attr node, java.lang.String newv)
Called when an Attr node has been added.void
attrModified(org.w3c.dom.Attr node, java.lang.String oldv, java.lang.String newv)
Called when an Attr node has been modified.void
attrRemoved(org.w3c.dom.Attr node, java.lang.String oldv)
Called when an Attr node has been removed.
-
-
-
Method Detail
-
attrAdded
void attrAdded(org.w3c.dom.Attr node, java.lang.String newv)
Called when an Attr node has been added.
-
attrModified
void attrModified(org.w3c.dom.Attr node, java.lang.String oldv, java.lang.String newv)
Called when an Attr node has been modified.
-
attrRemoved
void attrRemoved(org.w3c.dom.Attr node, java.lang.String oldv)
Called when an Attr node has been removed.
-
-