Package org.esa.snap.ui.layer
Interface LayerEditorDescriptor
-
- All Known Implementing Classes:
DefaultLayerEditorDescriptor
@Deprecated public interface LayerEditorDescriptor
Deprecated.since SNAP 2, no usedA descriptor for a layer editor.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 Deprecated Methods Modifier and Type Method Description Class<? extends Layer>getLayerClass()Deprecated.Gets theLayerclass which is associated directly with aLayerEditorclass or indirectly via aExtensionFactoryclass.Class<? extends LayerEditor>getLayerEditorClass()Deprecated.Gets theLayerEditorclass, whose instances serve as suitable editor either for instances of theLayerclass returned bygetLayerClass()or for instances of theLayerTypeclass returned bygetLayerTypeClass().Class<? extends ExtensionFactory>getLayerEditorFactoryClass()Deprecated.Gets theExtensionFactoryclass, whose instances serve as suitable editor factory either for instances of theLayerclass returned bygetLayerClass()or for instances of theLayerTypeclass returned bygetLayerTypeClass().Class<? extends LayerType>getLayerTypeClass()Deprecated.Gets theLayerTypeclass which is associated directly with aLayerEditorclass or indirectly via aExtensionFactoryclass.
-
-
-
Method Detail
-
getLayerClass
Class<? extends Layer> getLayerClass()
Deprecated.Gets theLayerclass which is associated directly with aLayerEditorclass or indirectly via aExtensionFactoryclass.
-
getLayerTypeClass
Class<? extends LayerType> getLayerTypeClass()
Deprecated.Gets theLayerTypeclass which is associated directly with aLayerEditorclass or indirectly via aExtensionFactoryclass.
-
getLayerEditorClass
Class<? extends LayerEditor> getLayerEditorClass()
Deprecated.Gets theLayerEditorclass, whose instances serve as suitable editor either for instances of theLayerclass returned bygetLayerClass()or for instances of theLayerTypeclass returned bygetLayerTypeClass().- Returns:
- The
LayerEditorclass. May benull, if theExtensionFactoryclass is given.
-
getLayerEditorFactoryClass
Class<? extends ExtensionFactory> getLayerEditorFactoryClass()
Deprecated.Gets theExtensionFactoryclass, whose instances serve as suitable editor factory either for instances of theLayerclass returned bygetLayerClass()or for instances of theLayerTypeclass returned bygetLayerTypeClass().- Returns:
- The
LayerEditorclass. May benull, if theLayerEditorclass is given.
-
-