Package docking
Interface ComponentProviderActivationListener
-
public interface ComponentProviderActivationListener
An interface that enables callback when aComponentProvider
becomes activated or deactivated.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
componentProviderActivated(ComponentProvider componentProvider)
Called when the given component provider is activated.void
componentProviderDeactivated(ComponentProvider componentProvider)
Called when the given component provider is deactivated.
-
-
-
Method Detail
-
componentProviderActivated
void componentProviderActivated(ComponentProvider componentProvider)
Called when the given component provider is activated.- Parameters:
componentProvider
- The activated component provider.
-
componentProviderDeactivated
void componentProviderDeactivated(ComponentProvider componentProvider)
Called when the given component provider is deactivated.- Parameters:
componentProvider
- The deactivated component provider.
-
-