Package org.esa.snap.rcp.util
Interface SelectionSupport.Handler<T>
- Type Parameters:
T
- The type of the selection
- All Known Implementing Classes:
AbstractOverlayAction
,OverlayGcpLayerAction
,OverlayGeometryLayerAction
,OverlayGraticuleLayerAction
,OverlayNoDataLayerAction
,OverlayPinLayerAction
,OverlayWorldMapLayerAction
- Enclosing interface:
SelectionSupport<T>
public static interface SelectionSupport.Handler<T>
Handles single selection changes.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
selectionChange
(T oldValue, T newValue) Called if a selection changed.
-
Method Details
-
selectionChange
Called if a selection changed.- Parameters:
oldValue
- The old selection, ornull
if no such existsnewValue
- The new selection, ornull
if no such exists
-