| |
|
| java.lang.Object org.compass.core.util.FieldInvoker
FieldInvoker | public class FieldInvoker (Code) | | author: kimchy |
getTargetClass | public Class getTargetClass()(Code) | | Return the target class on which to call the target method.
|
getTargetField | public String getTargetField()(Code) | | Return the name of the field to be invoked.
|
getTargetObject | public Object getTargetObject()(Code) | | Return the target object on which to call the target method.
|
setTargetClass | public void setTargetClass(Class targetClass)(Code) | | Set the target class on which to call the target method.
Only necessary when the target method is static; else,
a target object needs to be specified anyway.
See Also: FieldInvoker.setTargetObject |
setTargetObject | public void setTargetObject(Object targetObject)(Code) | | Set the target object on which to call the target method.
Only necessary when the target method is not static;
else, a target class is sufficient.
See Also: FieldInvoker.setTargetClass |
setTargetValue | public void setTargetValue(Object targetValue)(Code) | | Sets the value that will be set to the field
|
|
|
|