Package org.esa.snap.ui.layer
Interface LayerSourceDescriptor
-
- All Known Implementing Classes:
DefaultLayerSourceDescriptor
public interface LayerSourceDescriptor
TheLayerSourceDescriptor
provides metadata and a factory method for aLayerSource
.Note: This API is not public yet and may significantly change in the future. Use it at your own risk.
- Since:
- BEAM 4.6
- Version:
- $ Revision $ $ Date $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LayerSource
createLayerSource()
Creates theLayerSource
which is used in the graphical user interface to addLayer
to a view.String
getDescription()
A text describing what theLayerSource
, created by thisLayerSourceDescriptor
, does.String
getId()
A unique ID.LayerType
getLayerType()
TheLayerType
.String
getName()
A human readable name.
-
-
-
Method Detail
-
getId
String getId()
A unique ID.- Returns:
- The unique ID.
-
getName
String getName()
A human readable name.- Returns:
- The name.
-
getDescription
String getDescription()
A text describing what theLayerSource
, created by thisLayerSourceDescriptor
, does.- Returns:
- A description.
-
createLayerSource
LayerSource createLayerSource()
Creates theLayerSource
which is used in the graphical user interface to addLayer
to a view.- Returns:
- The
LayerSource
.
-
-