Package org.jboss.msc.value
Class MethodValue<T>
- java.lang.Object
-
- org.jboss.msc.value.MethodValue<T>
-
-
Field Summary
Fields Modifier and Type Field Description private Value<java.lang.reflect.Method>
methodValue
private java.util.List<? extends Value<?>>
parameters
private Value<?>
targetValue
-
Constructor Summary
Constructors Constructor Description MethodValue(Value<java.lang.reflect.Method> methodValue, Value<?> targetValue, java.util.List<? extends Value<?>> parameters)
Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
getValue()
Get the actual value.
-
-
-
Constructor Detail
-
MethodValue
public MethodValue(Value<java.lang.reflect.Method> methodValue, Value<?> targetValue, java.util.List<? extends Value<?>> parameters)
Construct a new instance.- Parameters:
methodValue
- the method to invoketargetValue
- the target object on which to invoke this methodparameters
- the parameters to pass to the method
-
-