Package org.geotools.api.style
Interface ImageOutline
-
- All Known Implementing Classes:
ImageOutlineImpl
public interface ImageOutlineImageOutline specifies how individual source rasters in a multi-raster set (such as a set of satellite-image scenes) should be outlined to make the individual-image locations visible.<xsd:element name="ImageOutline"> <xsd:annotation> <xsd:documentation> "ImageOutline" specifies how individual source rasters in a multi-raster set (such as a set of satellite-image scenes) should be outlined to make the individual-image locations visible. </xsd:documentation> </xsd:annotation> <xsd:complexType> <xsd:choice> <xsd:element ref="sld:LineSymbolizer"/> <xsd:element ref="sld:PolygonSymbolizer"/> </xsd:choice> </xsd:complexType> </xsd:element>
- Author:
- Justin Deoliveira, The Open Planning Project
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(StyleVisitor visitor)SymbolizergetSymbolizer()Returns the symbolizer of the image outline.voidsetSymbolizer(Symbolizer symbolizer)Sets the symbolizer of the image outline.
-
-
-
Method Detail
-
getSymbolizer
Symbolizer getSymbolizer()
Returns the symbolizer of the image outline.- Returns:
- One of {@see PolygonSymbolizer},{@see LineSymbolizer}.
-
setSymbolizer
void setSymbolizer(Symbolizer symbolizer)
Sets the symbolizer of the image outline.- Parameters:
symbolizer- The new symbolizer, one of {@see PolygonSymbolizer},{@see LineSymbolizer}.
-
accept
void accept(StyleVisitor visitor)
-
-