Interface Setter

All Known Implementing Classes:
Setter.FieldSetter, Setter.MethodSetter

public interface Setter
Encapsulate a bean setter method that may be a method or field.
See Also:
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static class 
    Field setter
    static class 
    Method setter
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    set(Object object, Object value)
    Call the setter on the specified object.
  • Method Details

    • set

      void set(Object object, Object value) throws ExecutableException
      Call the setter on the specified object.
      Parameters:
      object - The object to call the setter on
      value - The value to set.
      Throws:
      ExecutableException - Exception occurred on invoked constructor/method/field.