Package com.zfabrik.components
Interface IComponentsLookup
public interface IComponentsLookup
The components lookup is a convenience wrapper of
IResourceLookup
for the for resource namespace com.zfabrik.components
. When looking up components
via this interface, the namespace will be prepended automatically.
In other words
IComponentsLookup.INSTANCE.lookup(<name>,<type>) == IResourceLookup.INSTANCE.lookup(com.zfabrik.components/<name>,<type>)
Some default resolutions apply for components when looking up for some type:
- com.zfabrik.components.IComponentDescriptor.class: Returns the
IComponentDescriptor
for component
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
Initialization help -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Resource namespace for component resources wihtin the resource management system.static final IResourceLookup
Use asIComponentsLookup.INSTANCE
to get the implementation of this interface.
-
Field Details
-
COMPONENTS
Resource namespace for component resources wihtin the resource management system.- See Also:
-
INSTANCE
Use asIComponentsLookup.INSTANCE
to get the implementation of this interface.
-