01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2002-2006, GeoTools Project Managment Committee (PMC)
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: */
16: package org.geotools.styling;
17:
18: import org.geotools.event.GTComponent;
19:
20: /**
21: * ImageOutline specifies how individual source rasters in a multi-raster set
22: * (such as a set of satellite-image scenes) should be outlined to make the
23: * individual-image locations visible.
24: *
25: * <xsd:element name="ImageOutline">
26: * <xsd:annotation>
27: * <xsd:documentation> "ImageOutline" specifies
28: * how individual source rasters in a multi-raster set
29: * (such as a set of satellite-image scenes) should be
30: * outlined to make the individual-image locations visible. </xsd:documentation>
31: * </xsd:annotation>
32: * <xsd:complexType>
33: * <xsd:choice>
34: * <xsd:element ref="sld:LineSymbolizer"/>
35: * <xsd:element ref="sld:PolygonSymbolizer"/>
36: * </xsd:choice>
37: * </xsd:complexType>
38: * </xsd:element>
39: *
40: * @author Justin Deoliveira, The Open Planning Project
41: *
42: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/api/src/main/java/org/geotools/styling/ImageOutline.java $
43: */
44: public interface ImageOutline extends GTComponent {
45: /**
46: * Returns the symbolizer of the image outline.
47: *
48: * @return One of {@see PolygonSymbolizer},{@see LineSymbolizer}.
49: */
50: Symbolizer getSymbolizer();
51:
52: /**
53: * Sets the symbolizer of the image outline.
54: *
55: * @param symbolizer The new symbolizer, one of {@see PolygonSymbolizer},{@see LineSymbolizer}.
56: */
57: void setSymbolizer(Symbolizer symbolizer);
58: }
|