Package com.zfabrik.components.provider
Interface IComponentsRepositoryContext
public interface IComponentsRepositoryContext
The component repository context provides component repository implementations access to the repository chain.
Component repositories are organized in a chain of responsibility. Component repositories of higher priority (
IComponentsManager.registerRepository(int, IComponentsRepository)
are required to handle visibility of components defined along the chain when implementing methods like IComponentsRepository.findComponents(com.zfabrik.util.expression.X)
.- Author:
- hb
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionnext()
Return the next, lower priority component repository ornull
, if this repository is the end of the chain.
-
Method Details
-
next
IComponentsRepository next()Return the next, lower priority component repository ornull
, if this repository is the end of the chain.
-