Package org.apache.batik.bridge
Interface Bridge
-
- All Known Subinterfaces:
ClipBridge
,DocumentBridge
,FilterBridge
,FilterPrimitiveBridge
,GenericBridge
,GraphicsNodeBridge
,MarkerBridge
,MaskBridge
,PaintBridge
- All Known Implementing Classes:
AbstractGraphicsNodeBridge
,AbstractSVGBridge
,AbstractSVGFilterPrimitiveElementBridge
,AbstractSVGGradientElementBridge
,AbstractSVGGradientElementBridge.SVGStopElementBridge
,AbstractSVGLightingElementBridge
,AbstractSVGLightingElementBridge.AbstractSVGLightElementBridge
,AbstractSVGLightingElementBridge.SVGFeDistantLightElementBridge
,AbstractSVGLightingElementBridge.SVGFePointLightElementBridge
,AbstractSVGLightingElementBridge.SVGFeSpotLightElementBridge
,AnimatableGenericSVGBridge
,AnimatableSVGBridge
,BatikFlowTextElementBridge
,BatikFlowTextElementBridge.BatikFlowContentBridge
,BatikHistogramNormalizationElementBridge
,BatikRegularPolygonElementBridge
,BatikStarElementBridge
,BindableElementBridge
,ColorSwitchBridge
,SVG12TextElementBridge
,SVGAElementBridge
,SVGAltGlyphElementBridge
,SVGAnimateColorElementBridge
,SVGAnimateElementBridge
,SVGAnimateMotionElementBridge
,SVGAnimateTransformElementBridge
,SVGAnimationElementBridge
,SVGCircleElementBridge
,SVGClipPathElementBridge
,SVGColorProfileElementBridge
,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
,SVGFontElementBridge
,SVGFontFaceElementBridge
,SVGGElementBridge
,SVGGlyphElementBridge
,SVGHKernElementBridge
,SVGImageElementBridge
,SVGKernElementBridge
,SVGLinearGradientElementBridge
,SVGLineElementBridge
,SVGMarkerElementBridge
,SVGMaskElementBridge
,SVGMissingGlyphElementBridge
,SVGMultiImageElementBridge
,SVGPathElementBridge
,SVGPatternElementBridge
,SVGPolygonElementBridge
,SVGPolylineElementBridge
,SVGRadialGradientElementBridge
,SVGRectElementBridge
,SVGSetElementBridge
,SVGShapeElementBridge
,SVGSolidColorElementBridge
,SVGSVGElementBridge
,SVGSwitchElementBridge
,SVGTextElementBridge
,SVGTextElementBridge.AbstractTextChildBridgeUpdateHandler
,SVGTextElementBridge.AbstractTextChildSVGContext
,SVGTextElementBridge.AbstractTextChildTextContent
,SVGTextElementBridge.TextPathBridge
,SVGTextElementBridge.TRefBridge
,SVGTextElementBridge.TspanBridge
,SVGTextPathElementBridge
,SVGTitleElementBridge
,SVGUseElementBridge
,SVGVKernElementBridge
,XBLContentElementBridge
,XBLShadowTreeElementBridge
public interface Bridge
A tagging interface that all bridges must implement. A bridge is responsible for creating and maintaining an appropriate object according to an Element.- Version:
- $Id: Bridge.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Bridge
getInstance()
Returns a new instance of this bridge.java.lang.String
getLocalName()
Returns the local name of the element thisBridge
is dedicated to.java.lang.String
getNamespaceURI()
Returns the namespace URI of the element thisBridge
is dedicated to.
-
-
-
Method Detail
-
getNamespaceURI
java.lang.String getNamespaceURI()
Returns the namespace URI of the element thisBridge
is dedicated to.
-
getLocalName
java.lang.String getLocalName()
Returns the local name of the element thisBridge
is dedicated to.
-
getInstance
Bridge getInstance()
Returns a new instance of this bridge.
-
-