Interface IBeanAccessorDelegate
public interface IBeanAccessorDelegate
-
Method Summary
Modifier and TypeMethodDescriptiongetPropertyValue
(Object object, String property) Retrieves a bean property value.void
setPropertyValue
(Object object, String property, Object value) Sets a bean property value.
-
Method Details
-
getPropertyValue
Retrieves a bean property value.- Parameters:
object
- The object being accessed.property
- The name of the property.- Returns:
- Result of calling the getter
-
setPropertyValue
Sets a bean property value.- Parameters:
object
- The object being accessed.property
- Name of the property.value
- The value passed to the setter method.
-