Package com.zfabrik.components
Interface IComponentsLookup
-
public interface IComponentsLookupThe components lookup is a convenience wrapper ofIResourceLookupfor the for resource namespacecom.zfabrik.components. When looking up components via this interface, the namespace will be prepended automatically. In other wordsIComponentsLookup.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
IComponentDescriptorfor component
- com.zfabrik.components.IComponentDescriptor.class: Returns the
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIComponentsLookup.initializerInitialization help
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCOMPONENTSResource namespace for component resources wihtin the resource management system.static IResourceLookupINSTANCEUse asIComponentsLookup.INSTANCEto get the implementation of this interface.
-
-
-
Field Detail
-
COMPONENTS
static final java.lang.String COMPONENTS
Resource namespace for component resources wihtin the resource management system.- See Also:
- Constant Field Values
-
INSTANCE
static final IResourceLookup INSTANCE
Use asIComponentsLookup.INSTANCEto get the implementation of this interface.
-
-