Interface DynamicPropertyHandler

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Object getProperty​(java.lang.Object object, java.lang.String propertyName)
      Returns the value of the specified dynamic property.
      java.lang.String[] getPropertyNames​(java.lang.Object object)
      Returns a list of dynamic property names for the supplied object.
      void setProperty​(java.lang.Object object, java.lang.String propertyName, java.lang.Object value)
      Modifies the value of the specified dynamic property.
    • Method Detail

      • getPropertyNames

        java.lang.String[] getPropertyNames​(java.lang.Object object)
        Returns a list of dynamic property names for the supplied object.
        Parameters:
        object - to inspect
        Returns:
        String[]
      • getProperty

        java.lang.Object getProperty​(java.lang.Object object,
                                     java.lang.String propertyName)
        Returns the value of the specified dynamic property.
        Parameters:
        object - to search
        propertyName - to retrieve
        Returns:
        Object
      • setProperty

        void setProperty​(java.lang.Object object,
                         java.lang.String propertyName,
                         java.lang.Object value)
        Modifies the value of the specified dynamic property.
        Parameters:
        object - to modify
        propertyName - to modify
        value - to set