Package de.sciss.app
Interface DynamicListening
-
- All Known Implementing Classes:
BasicPathField,DynamicPrefChangeManager,HelpButton,IndeterminateSpinner,KeyStrokeTextField,PrefCheckBox,PrefComboBox,PrefNumberField,PrefParamField,PrefPathField,PrefRecentItemsCombo,PrefTextField
public interface DynamicListeningThis interface is used by Components that need to register and unregister listeners whenever they are shown or hidden in order to improve performance and garbage collection.ObserverPaletteis a good example where listeners are dynamically added and removed. Usually you don't call the interface methods directly but letDynamicAncestorAdapterdo the work.- See Also:
DynamicAncestorAdapter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidstartListening()will be called when the component becomes visiblevoidstopListening()will be called when the component is hidden
-