Package io.kojan.xml

Interface Setter<OuterType,NestedType>

Type Parameters:
OuterType - bean class
NestedType - type of property value
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface Setter<OuterType,NestedType>
Bean property setter.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    set(OuterType object, NestedType value)
    Updates value of bean property.
  • Method Details

    • set

      void set(OuterType object, NestedType value)
      Updates value of bean property.
      Parameters:
      object - the bean whose property should be updated
      value - the value to set