Package docking
Interface ComponentProviderActivationListener
public interface ComponentProviderActivationListener
An interface that enables callback when a
ComponentProvider
becomes activated or
deactivated.-
Method Summary
Modifier and TypeMethodDescriptionvoid
componentProviderActivated
(ComponentProvider componentProvider) Called when the given component provider is activated.void
componentProviderDeactivated
(ComponentProvider componentProvider) Called when the given component provider is deactivated.
-
Method Details
-
componentProviderActivated
Called when the given component provider is activated.- Parameters:
componentProvider
- The activated component provider.
-
componentProviderDeactivated
Called when the given component provider is deactivated.- Parameters:
componentProvider
- The deactivated component provider.
-