Class InjectNamedProvider
- java.lang.Object
 - 
- org.apache.tapestry5.internal.transform.InjectNamedProvider
 
 
- 
- All Implemented Interfaces:
 InjectionProvider2
public class InjectNamedProvider extends Object implements InjectionProvider2
- Since:
 - 5.3
 
 
- 
- 
Constructor Summary
Constructors Constructor Description InjectNamedProvider(ObjectLocator locator, ComponentClassCache cache) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanprovideInjection(PlasticField field, ObjectLocator locator, MutableComponentModel componentModel)Perform the injection, if possible. 
 - 
 
- 
- 
Constructor Detail
- 
InjectNamedProvider
public InjectNamedProvider(ObjectLocator locator, ComponentClassCache cache)
 
 - 
 
- 
Method Detail
- 
provideInjection
public boolean provideInjection(PlasticField field, ObjectLocator locator, MutableComponentModel componentModel)
Description copied from interface:InjectionProvider2Perform the injection, if possible. Most often, this will result in a call toPlasticField.inject(Object). The caller is responsible for invokingPlasticField.claim(Object).- Specified by:
 provideInjectionin interfaceInjectionProvider2- Parameters:
 field- that has theInjectannotationlocator- allows services to be locatedcomponentModel- defines the relevant aspects of the component- Returns:
 - true if an injection has been made (terminates the command chain), false to continue down the chain
 
 
 - 
 
 -