T - the injection typepublic final class MethodInjector<T> extends Object implements Injector<T>
Values.injectedValue(). The
value being invoked upon can be specified by Values.thisValue().| Constructor and Description |
|---|
MethodInjector(Method method,
Value<?> targetValue,
Value<?> injectedValue,
List<? extends Value<?>> parameterList)
Construct a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
inject(T value)
Inject the given value.
|
void |
uninject()
Uninject the given value (in other words, cancel or undo a previous injection).
|
public MethodInjector(Method method, Value<?> targetValue, Value<?> injectedValue, List<? extends Value<?>> parameterList)
method - the method to invoketargetValue - the value of the invocation target (the object being called upon) - use Values.nullValue() for static methodsinjectedValue - the value to use for Values.injectedValue() on uninjection (usually Values.nullValue())parameterList - the list of parameter values (any null parameters should use Values.nullValue())public void inject(T value) throws InjectionException
inject in interface Injector<T>value - the valueInjectionException - if the injection failedCopyright © 2017 JBoss by Red Hat. All rights reserved.