Class FieldAccessor
- java.lang.Object
-
- org.smallmind.nutsnbolts.reflection.FieldAccessor
-
public class FieldAccessor extends Object
-
-
Constructor Summary
Constructors Constructor Description FieldAccessor(Field field, Method getterMethod, Method setterMethod)
-
-
-
Method Detail
-
getName
public String getName()
-
getType
public Class<?> getType()
-
getField
public Field getField()
-
get
public Object get(Object target) throws IllegalAccessException, InvocationTargetException
-
set
public void set(Object target, Object value) throws IllegalAccessException, InvocationTargetException
-
-