Interface PropertyConduit

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Object get​(java.lang.Object instance)
      Reads the property from the instance.
      java.lang.Class getPropertyType()
      Returns the type of the property read or updated by the conduit.
      void set​(java.lang.Object instance, java.lang.Object value)
      Changes the current value of the property.
    • Method Detail

      • get

        java.lang.Object get​(java.lang.Object instance)
        Reads the property from the instance.
        Parameters:
        instance - object containing the property
        Returns:
        the current value of the property
      • set

        void set​(java.lang.Object instance,
                 java.lang.Object value)
        Changes the current value of the property.
        Parameters:
        instance - object containing the property
        value - to change the property to
      • getPropertyType

        java.lang.Class getPropertyType()
        Returns the type of the property read or updated by the conduit.