Package org.esa.snap.rcp.util
Interface SelectionSupport<T>
public interface SelectionSupport<T>
Utility which allows for registering handlers which are informed about single selection changes.
- Since:
 - SNAP 2.0
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceHandles single selection changes. - 
Method Summary
Modifier and TypeMethodDescriptionvoidaddHandler(SelectionSupport.Handler<T> handler) Adds a new handler.voidremoveHandler(SelectionSupport.Handler<T> handler) Removes an existing handler. 
- 
Method Details
- 
addHandler
Adds a new handler.- Parameters:
 handler- The handler.
 - 
removeHandler
Removes an existing handler.- Parameters:
 handler- The handler.
 
 -