Package org.esa.snap.ui.layer
Interface LayerSourcePageContext
-
- All Superinterfaces:
AssistantPageContext
- All Known Implementing Classes:
LayerSourceAssistantPane
public interface LayerSourcePageContext extends AssistantPageContext
Instances of this interface provide the context for implementations ofAbstractLayerSourceAssistantPage.Note: This API is not public yet and may significantly change in the future. Use it at your own risk.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LayerContextgetLayerContext()Gets thelayer contextof the selected view.LayerSourcegetLayerSource()Gets theLayerSourceof this assistant.ObjectgetPropertyValue(String key)Gets the value for the given key.voidsetLayerSource(LayerSource layerSource)Sets theLayerSourceof this assistant.voidsetPropertyValue(String key, Object value)Sets the value for the given key.-
Methods inherited from interface org.esa.snap.ui.assistant.AssistantPageContext
getCurrentPage, getWindow, setCurrentPage, showErrorDialog, updateState
-
-
-
-
Method Detail
-
getLayerContext
LayerContext getLayerContext()
Gets thelayer contextof the selected view.- Returns:
- The
layer contextof the selected view.
-
setLayerSource
void setLayerSource(LayerSource layerSource)
Sets theLayerSourceof this assistant.- Parameters:
layerSource- TheLayerSourceof this assistant.
-
getLayerSource
LayerSource getLayerSource()
Gets theLayerSourceof this assistant.- Returns:
- The
LayerSourceof this assistant.
-
getPropertyValue
Object getPropertyValue(String key)
Gets the value for the given key.- Parameters:
key- The key of the property.- Returns:
- The value of the property.
-
-