Creates a new instance of the decorator.
the next references or decorator in the chain.
the decorator at the top of the chain.
The next references or decorator in the chain.
The decorator at the top of the chain.
Clarifies a component locator by merging two descriptors into one to replace missing fields. That allows to get a more complete descriptor that includes all possible fields.
a component locator to clarify.
a factory that shall create the component.
clarified component descriptor (locator)
Creates a component identified by given locator.
a locator to identify component to be created.
a factory that shall create the component.
the created component.
Gets all component references that match specified locator.
the locator to find a reference by.
forces to raise an exception if no reference is found.
a list with matching component references.
Finds a factory capable creating component by given descriptor from the components registered in the references.
a locator of component to be created.
found factory or null if factory was not found.
Gets all component references registered in this reference map.
a list with component references.
Gets locators for all registered component references in this reference map.
a list with component locators.
Gets an optional component reference that matches specified locator.
the locator to find references by.
a matching component reference or null if nothing was found.
Gets a required component reference that matches specified locator.
the locator to find a reference by.
a matching component reference.
Gets all component references that match specified locator.
the locator to find references by.
a list with matching component references or empty list if nothing was found.
Gets all component references that match specified locator. At least one component reference must be present. If it doesn't the method throws an error.
the locator to find references by.
a list with matching component references.
Puts a new reference into this reference map.
a locator to find the reference by.
a component reference to be added.
Removes a previously added reference that matches specified locator. If many references match the locator, it removes only the first one. When all references shall be removed, use removeAll method instead.
a locator to remove reference
the removed component reference.
Removes all component references that match the specified locator.
the locator to remove references by.
a list, containing all removed references.
Generated using TypeDoc
References decorator that automatically creates missing components using available component factories upon component retrival.