Package org.geotools.api.style
Interface TraversingStyleVisitor
public interface TraversingStyleVisitor
An interface for classes that want to perform operations on a Style hierarchy. It forms part of a GoF Visitor Pattern
implementation.
A call to style.accept(StyleVisitor) will result in a call to one of the methods in this interface. The responsibility for traversing sub filters is intended to lie with the visitor (this is unusual, but permitted under the Visitor pattern).
A typical use would be to transcribe a style into a specific format, e.g. XML or SQL. Alternatively it may be to extract specific information from the Style structure, for example a list of all fills. Finally a a style visitor is often used (in conjunction with a factory) in the production of a copy; or slightly modified copy of the original style.
It is common practice for a StyleVisitor to also implement an ExpressionVisitor in order to traverse both data structures.
- Since:
- GeoAPI 2.2
- Author:
- Open Geospatial Consortium, James Macgill, Ian Turton, Johann Sorel (Geomatys)
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvisit
(AnchorPoint anchorPoint, Object data) Called when accept is called on a anchor pointvisit
(ChannelSelection channelSelection, Object data) Called when accept is called on a rasterChannelSelection
elementCalled when accept is called on a raster color mapvisit
(ColorReplacement colorReplacement, Object data) Called when accept is called on a color replacementvisit
(ContrastEnhancement contrastEnhancement, Object data) Called when accept is called on a raster ContrastEnhancement elementvoid
visit
(ContrastMethod method, Object data) Called when accept is called on a rasterContrastMethod
elementvisit
(Description description, Object data) Called when accept is called on a descriptionvisit
(Displacement displacement, Object data) Called when accept is called on a displacementvisit
(ExtensionSymbolizer extension, Object data) Called when accept is called on a extension symbolizervisit
(ExternalGraphic externalGraphic, Object data) Called when accept is called on a external graphicvisit
(ExternalMark externalMark, Object data) Called when accept is called on a external markvisit
(FeatureTypeStyle featureTypeStyle, Object data) Called when accept is called on a FetaureTypeStyleCalled when accept is called on a fillCalled when accept is called on a fontvisit
(GraphicFill graphicFill, Object data) Called when accept is called on a graphic fillvisit
(GraphicLegend graphicLegend, Object data) Called when accept is called on a legend graphicCalled when accept is called on a graphicvisit
(GraphicStroke graphicStroke, Object data) Called when accept is called on a graphic strokeCalled when accept is called on a halovisit
(LinePlacement linePlacement, Object data) Called when accept is called on a Line Placementvisit
(LineSymbolizer lineSymbolizer, Object data) Called when accept is called on a linesymbolizerCalled when accept is called on a markvisit
(PointPlacement pointPlacement, Object data) Called when accept is called on a Point Placementvisit
(PointSymbolizer pointSymbolizer, Object data) Called when accept is called on a pointsymbolizervisit
(PolygonSymbolizer polygonSymbolizer, Object data) Called when accept is called on a polygon symbolizervisit
(RasterSymbolizer rasterSymbolizer, Object data) Called when accept is called on a rastersymbolizerCalled when accept is called on a rulevisit
(SelectedChannelType selectChannelType, Object data) Called when accept is called on a rasterSelectedChannelType
elementvisit
(ShadedRelief shadedRelief, Object data) Called when accept is called on a rasterShadedRelief
elementCalled when accept is called on a strokeCalled when accept is called on a Style.visit
(TextSymbolizer textSymbolizer, Object data) Called when accept is called on a textsymbolizer
-
Method Details
-
visit
Called when accept is called on a Style.- Parameters:
style
- The style to visit
-
visit
Called when accept is called on a FetaureTypeStyle- Parameters:
featureTypeStyle
- the feature type styler to visit
-
visit
Called when accept is called on a rule- Parameters:
rule
- the rule to visit
-
visit
Called when accept is called on a pointsymbolizer- Parameters:
pointSymbolizer
- the point symbolizer to visit
-
visit
Called when accept is called on a linesymbolizer- Parameters:
lineSymbolizer
- the line symbolizer to visit
-
visit
Called when accept is called on a polygon symbolizer- Parameters:
polygonSymbolizer
- the polygon symbolizer to visit
-
visit
Called when accept is called on a textsymbolizer- Parameters:
textSymbolizer
- the text symbolizer to visit
-
visit
Called when accept is called on a rastersymbolizer- Parameters:
rasterSymbolizer
- the raster symbolizer to visit
-
visit
Called when accept is called on a extension symbolizer- Parameters:
extension
- the extension symbolizer to visit
-
visit
Called when accept is called on a description- Parameters:
description
- the description to visit
-
visit
Called when accept is called on a displacement- Parameters:
displacement
- the displacement to visit
-
visit
Called when accept is called on a fill- Parameters:
fill
- the fill to be visited
-
visit
Called when accept is called on a font- Parameters:
font
- the font to be visited
-
visit
Called when accept is called on a stroke- Parameters:
stroke
- the stroke to visit
-
visit
Called when accept is called on a graphic- Parameters:
graphic
- the graphic to visit
-
visit
Called when accept is called on a graphic fill- Parameters:
graphicFill
- the graphic fill to visit
-
visit
Called when accept is called on a graphic stroke- Parameters:
graphicStroke
- the graphic stroke to visit
-
visit
Called when accept is called on a mark- Parameters:
mark
- the mark to visit
-
visit
Called when accept is called on a external mark- Parameters:
externalMark
- the external mark to visit
-
visit
Called when accept is called on a external graphic- Parameters:
externalGraphic
- the external graphic to visit
-
visit
Called when accept is called on a Point Placement- Parameters:
pointPlacement
- the point placement to visit
-
visit
Called when accept is called on a anchor point- Parameters:
anchorPoint
- the anchor point to visit
-
visit
Called when accept is called on a Line Placement- Parameters:
linePlacement
- the line placement to visit
-
visit
Called when accept is called on a legend graphic- Parameters:
graphicLegend
- the legend graphic to visit
-
visit
Called when accept is called on a halo- Parameters:
halo
- the halo to visit
-
visit
Called when accept is called on a raster color map- Parameters:
colorMap
- the color map to visit
-
visit
Called when accept is called on a color replacement- Parameters:
colorReplacement
- the color replacement to visit
-
visit
Called when accept is called on a raster ContrastEnhancement element- Parameters:
contrastEnhancement
- theContrastEnhancement
to visit.
-
visit
Called when accept is called on a rasterChannelSelection
element- Parameters:
channelSelection
- theChannelSelection
to visit.
-
visit
Called when accept is called on a rasterSelectedChannelType
element- Parameters:
selectChannelType
- theSelectedChannelType
to visit.
-
visit
Called when accept is called on a rasterShadedRelief
element- Parameters:
shadedRelief
- theShadedRelief
to visit.
-
visit
Called when accept is called on a rasterContrastMethod
element- Parameters:
method
- theContrastMethod
to visit
-