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 BridgeUpdateHandler
Interface for objects interested in being notified of updates.
- Version:
- $Id: BridgeUpdateHandler.java 1733416 2016-03-03 07:07:13Z gadams $
-
Method Summary
Modifier and TypeMethodDescriptionvoid
dispose()
Disposes this BridgeUpdateHandler and releases all resources.void
Invoked when the animated value of an animated attribute has changed.void
Invoked when an CSSEngineEvent is fired.void
Invoked when an MutationEvent of type 'DOMAttrModified' is fired.void
Invoked when an MutationEvent of type 'DOMCharacterDataModified' is fired.void
Invoked when an MutationEvent of type 'DOMNodeInserted' is fired.void
Invoked when an MutationEvent of type 'DOMNodeRemoved' is fired.void
Invoked when an 'other' animation value has changed.
-
Method Details
-
handleDOMAttrModifiedEvent
Invoked when an MutationEvent of type 'DOMAttrModified' is fired. -
handleDOMNodeInsertedEvent
Invoked when an MutationEvent of type 'DOMNodeInserted' is fired. -
handleDOMNodeRemovedEvent
Invoked when an MutationEvent of type 'DOMNodeRemoved' is fired. -
handleDOMCharacterDataModified
Invoked when an MutationEvent of type 'DOMCharacterDataModified' is fired. -
handleCSSEngineEvent
Invoked when an CSSEngineEvent is fired. -
handleAnimatedAttributeChanged
Invoked when the animated value of an animated attribute has changed. -
handleOtherAnimationChanged
Invoked when an 'other' animation value has changed. -
dispose
void dispose()Disposes this BridgeUpdateHandler and releases all resources.
-