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$
-
Method Summary
Modifier and TypeMethodDescriptionvoiddispose()Disposes this BridgeUpdateHandler and releases all resources.voidInvoked when the animated value of an animated attribute has changed.voidInvoked when an CSSEngineEvent is fired.voidInvoked when an MutationEvent of type 'DOMAttrModified' is fired.voidInvoked when an MutationEvent of type 'DOMCharacterDataModified' is fired.voidInvoked when an MutationEvent of type 'DOMNodeInserted' is fired.voidInvoked when an MutationEvent of type 'DOMNodeRemoved' is fired.voidInvoked 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.
-