Interface ComponentContainer<S>
-
- All Known Implementing Classes:
ComponentFactoryImpl
,ConfigurableComponentHolder
public interface ComponentContainer<S>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
disposed(SingleComponentManager<S> component)
Informs the holder that the component has been disposed as a result of calling the dispose method.ComponentActivator
getActivator()
Returns theComponentActivator
owning this component holder.ComponentMetadata
getComponentMetadata()
Returns theComponentMetadata
describing and declaring this component.ComponentLogger
getLogger()
-
-
-
Method Detail
-
getLogger
ComponentLogger getLogger()
-
getActivator
ComponentActivator getActivator()
Returns theComponentActivator
owning this component holder. (overlaps ComponentHolder)
-
getComponentMetadata
ComponentMetadata getComponentMetadata()
Returns theComponentMetadata
describing and declaring this component. (overlaps ComponentHolder)
-
disposed
void disposed(SingleComponentManager<S> component)
Informs the holder that the component has been disposed as a result of calling the dispose method.
-
-