Interface IBeanAccessorDelegate


public interface IBeanAccessorDelegate
  • Method Details

    • getPropertyValue

      Object getPropertyValue(Object object, String property)
      Retrieves a bean property value.
      Parameters:
      object - The object being accessed.
      property - The name of the property.
      Returns:
      Result of calling the getter
    • setPropertyValue

      void setPropertyValue(Object object, String property, Object value)
      Sets a bean property value.
      Parameters:
      object - The object being accessed.
      property - Name of the property.
      value - The value passed to the setter method.