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 likeIComponentsRepository.findComponents(com.zfabrik.util.expression.X)
.- Author:
- hb
- See Also:
IComponentsRepository
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IComponentsRepository
next()
Return the next, lower priority component repository ornull
, if this repository is the end of the chain.
-
-
-
Method Detail
-
next
IComponentsRepository next()
Return the next, lower priority component repository ornull
, if this repository is the end of the chain.
-
-