Package docking
Interface ComponentProviderActivationListener
- 
public interface ComponentProviderActivationListenerAn interface that enables callback when aComponentProviderbecomes activated or deactivated. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcomponentProviderActivated(ComponentProvider componentProvider)Called when the given component provider is activated.voidcomponentProviderDeactivated(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.
 
 - 
 
 -