Package org.jboss.msc.value
Class FieldValue<T>
- java.lang.Object
-
- org.jboss.msc.value.FieldValue<T>
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.reflect.Field
field
private Value<?>
targetValue
-
Constructor Summary
Constructors Constructor Description FieldValue(java.lang.reflect.Field field, Value<?> targetValue)
Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
getValue()
Get the actual value.
-
-
-
Field Detail
-
field
private final java.lang.reflect.Field field
-
targetValue
private final Value<?> targetValue
-
-
Constructor Detail
-
FieldValue
public FieldValue(java.lang.reflect.Field field, Value<?> targetValue)
Construct a new instance.- Parameters:
field
- the field to accesstargetValue
- the target object containing the field
-
-