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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
accept(StyleVisitor visitor)
calls the visit method of a StyleVisitorObject
accept(TraversingStyleVisitor visitor, Object extraData)
calls the visit method of a StyleVisitorInternationalString
getAbstract()
Human readable description.InternationalString
getTitle()
Human readable title.void
setAbstract(String description)
Define description in the current locale.void
setAbstract(InternationalString description)
void
setTitle(String title)
Define title using the current locale.void
setTitle(InternationalString title)
-
-
-
Method Detail
-
getTitle
InternationalString getTitle()
Human readable title.- Returns:
- the human readable title.
-
setTitle
void setTitle(InternationalString title)
-
setTitle
void setTitle(String title)
Define title using the current locale.
-
getAbstract
InternationalString getAbstract()
Human readable description.
-
accept
Object accept(TraversingStyleVisitor visitor, Object extraData)
calls the visit method of a StyleVisitor- Parameters:
visitor
- the style visitor
-
setAbstract
void setAbstract(InternationalString description)
-
setAbstract
void setAbstract(String description)
Define description in the current locale.- Parameters:
description
- Abstract providing summary of contents
-
accept
void accept(StyleVisitor visitor)
calls the visit method of a StyleVisitor- Parameters:
visitor
- the style visitor
-
-