Package org.geotools.api.style
Interface Description
- All Known Implementing Classes:
DescriptionImpl
public interface Description
A Description is used to store various informations who describe an element. Description values are mostly used in
User Interfaces (Lists, trees, ...).
- Since:
- GeoAPI 2.2
- Author:
- Open Geospatial Consortium, Johann Sorel (Geomatys)
-
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(StyleVisitor visitor) calls the visit method of a StyleVisitoraccept
(TraversingStyleVisitor visitor, Object extraData) calls the visit method of a StyleVisitorHuman readable description.getTitle()
Human readable title.void
setAbstract
(String description) Define description in the current locale.void
setAbstract
(InternationalString description) void
Define title using the current locale.void
setTitle
(InternationalString title)
-
Method Details
-
getTitle
InternationalString getTitle()Human readable title.- Returns:
- the human readable title.
-
setTitle
-
setTitle
Define title using the current locale. -
getAbstract
InternationalString getAbstract()Human readable description. -
accept
calls the visit method of a StyleVisitor- Parameters:
visitor
- the style visitor
-
setAbstract
-
setAbstract
Define description in the current locale.- Parameters:
description
- Abstract providing summary of contents
-
accept
calls the visit method of a StyleVisitor- Parameters:
visitor
- the style visitor
-