Package jodd.introspector
Interface Setter
-
public interface SetterUnified setter property interface for both methods and fields.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description MapperFunctiongetMapperFunction()java.lang.ClassgetSetterRawComponentType()java.lang.ClassgetSetterRawType()voidinvokeSetter(java.lang.Object target, java.lang.Object argument)static Setterof(FieldDescriptor fieldDescriptor)static Setterof(MethodDescriptor methodDescriptor)
-
-
-
Method Detail
-
of
static Setter of(MethodDescriptor methodDescriptor)
-
of
static Setter of(FieldDescriptor fieldDescriptor)
-
invokeSetter
void invokeSetter(java.lang.Object target, java.lang.Object argument) throws java.lang.IllegalAccessException, java.lang.reflect.InvocationTargetException- Throws:
java.lang.IllegalAccessExceptionjava.lang.reflect.InvocationTargetException
-
getSetterRawType
java.lang.Class getSetterRawType()
-
getSetterRawComponentType
java.lang.Class getSetterRawComponentType()
-
getMapperFunction
MapperFunction getMapperFunction()
-
-