Package org.apache.batik.bridge
Interface BridgeUpdateHandler
-
- All Known Subinterfaces:
SVG12BridgeUpdateHandler
- All Known Implementing Classes:
AbstractGraphicsNodeBridge,AbstractSVGFilterPrimitiveElementBridge,AbstractSVGGradientElementBridge,AbstractSVGGradientElementBridge.SVGStopElementBridge,AbstractSVGLightingElementBridge,AbstractSVGLightingElementBridge.AbstractSVGLightElementBridge,AbstractSVGLightingElementBridge.SVGFeDistantLightElementBridge,AbstractSVGLightingElementBridge.SVGFePointLightElementBridge,AbstractSVGLightingElementBridge.SVGFeSpotLightElementBridge,AnimatableGenericSVGBridge,BatikFlowTextElementBridge,BatikFlowTextElementBridge.BatikFlowContentBridge,BatikHistogramNormalizationElementBridge,BatikRegularPolygonElementBridge,BatikStarElementBridge,BindableElementBridge,SVG12TextElementBridge,SVGAElementBridge,SVGAnimateColorElementBridge,SVGAnimateElementBridge,SVGAnimateMotionElementBridge,SVGAnimateTransformElementBridge,SVGAnimationElementBridge,SVGCircleElementBridge,SVGClipPathElementBridge,SVGDecoratedShapeElementBridge,SVGDescElementBridge,SVGDescriptiveElementBridge,SVGDocumentBridge,SVGEllipseElementBridge,SVGFeBlendElementBridge,SVGFeColorMatrixElementBridge,SVGFeComponentTransferElementBridge,SVGFeComponentTransferElementBridge.SVGFeFuncAElementBridge,SVGFeComponentTransferElementBridge.SVGFeFuncBElementBridge,SVGFeComponentTransferElementBridge.SVGFeFuncElementBridge,SVGFeComponentTransferElementBridge.SVGFeFuncGElementBridge,SVGFeComponentTransferElementBridge.SVGFeFuncRElementBridge,SVGFeCompositeElementBridge,SVGFeConvolveMatrixElementBridge,SVGFeDiffuseLightingElementBridge,SVGFeDisplacementMapElementBridge,SVGFeFloodElementBridge,SVGFeGaussianBlurElementBridge,SVGFeImageElementBridge,SVGFeMergeElementBridge,SVGFeMergeElementBridge.SVGFeMergeNodeElementBridge,SVGFeMorphologyElementBridge,SVGFeOffsetElementBridge,SVGFeSpecularLightingElementBridge,SVGFeTileElementBridge,SVGFeTurbulenceElementBridge,SVGFilterElementBridge,SVGFlowRootElementBridge,SVGFlowRootElementBridge.FlowContentBridge,SVGGElementBridge,SVGImageElementBridge,SVGLinearGradientElementBridge,SVGLineElementBridge,SVGMarkerElementBridge,SVGMaskElementBridge,SVGMultiImageElementBridge,SVGPathElementBridge,SVGPatternElementBridge,SVGPolygonElementBridge,SVGPolylineElementBridge,SVGRadialGradientElementBridge,SVGRectElementBridge,SVGSetElementBridge,SVGShapeElementBridge,SVGSolidColorElementBridge,SVGSVGElementBridge,SVGSwitchElementBridge,SVGTextElementBridge,SVGTextElementBridge.AbstractTextChildBridgeUpdateHandler,SVGTextElementBridge.AbstractTextChildTextContent,SVGTextElementBridge.TextPathBridge,SVGTextElementBridge.TRefBridge,SVGTextElementBridge.TspanBridge,SVGTextPathElementBridge,SVGTitleElementBridge,SVGUseElementBridge,XBLContentElementBridge,XBLShadowTreeElementBridge
public interface BridgeUpdateHandlerInterface for objects interested in being notified of updates.- Version:
- $Id: BridgeUpdateHandler.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddispose()Disposes this BridgeUpdateHandler and releases all resources.voidhandleAnimatedAttributeChanged(AnimatedLiveAttributeValue alav)Invoked when the animated value of an animated attribute has changed.voidhandleCSSEngineEvent(CSSEngineEvent evt)Invoked when an CSSEngineEvent is fired.voidhandleDOMAttrModifiedEvent(org.w3c.dom.events.MutationEvent evt)Invoked when an MutationEvent of type 'DOMAttrModified' is fired.voidhandleDOMCharacterDataModified(org.w3c.dom.events.MutationEvent evt)Invoked when an MutationEvent of type 'DOMCharacterDataModified' is fired.voidhandleDOMNodeInsertedEvent(org.w3c.dom.events.MutationEvent evt)Invoked when an MutationEvent of type 'DOMNodeInserted' is fired.voidhandleDOMNodeRemovedEvent(org.w3c.dom.events.MutationEvent evt)Invoked when an MutationEvent of type 'DOMNodeRemoved' is fired.voidhandleOtherAnimationChanged(java.lang.String type)Invoked when an 'other' animation value has changed.
-
-
-
Method Detail
-
handleDOMAttrModifiedEvent
void handleDOMAttrModifiedEvent(org.w3c.dom.events.MutationEvent evt)
Invoked when an MutationEvent of type 'DOMAttrModified' is fired.
-
handleDOMNodeInsertedEvent
void handleDOMNodeInsertedEvent(org.w3c.dom.events.MutationEvent evt)
Invoked when an MutationEvent of type 'DOMNodeInserted' is fired.
-
handleDOMNodeRemovedEvent
void handleDOMNodeRemovedEvent(org.w3c.dom.events.MutationEvent evt)
Invoked when an MutationEvent of type 'DOMNodeRemoved' is fired.
-
handleDOMCharacterDataModified
void handleDOMCharacterDataModified(org.w3c.dom.events.MutationEvent evt)
Invoked when an MutationEvent of type 'DOMCharacterDataModified' is fired.
-
handleCSSEngineEvent
void handleCSSEngineEvent(CSSEngineEvent evt)
Invoked when an CSSEngineEvent is fired.
-
handleAnimatedAttributeChanged
void handleAnimatedAttributeChanged(AnimatedLiveAttributeValue alav)
Invoked when the animated value of an animated attribute has changed.
-
handleOtherAnimationChanged
void handleOtherAnimationChanged(java.lang.String type)
Invoked when an 'other' animation value has changed.
-
dispose
void dispose()
Disposes this BridgeUpdateHandler and releases all resources.
-
-