Interface TextArea.TextBindMapping

  • Enclosing class:
    TextArea

    public static interface TextArea.TextBindMapping
    Translates between text and context data during data binding.
    • Method Detail

      • toString

        java.lang.String toString​(java.lang.Object value)
        Converts a value from the bind context to a text representation during a Component.load(Object) operation.
        Parameters:
        value - The value from the bind context to convert to text.
        Returns:
        The string representation of the value to display.
      • valueOf

        java.lang.Object valueOf​(java.lang.String text)
        Converts a text string to a value to be stored in the bind context during a Component.store(Object) operation.
        Parameters:
        text - The current text from the control to convert to an object suitable for storage in the bind context.
        Returns:
        The text converted to an object suitable for the bind context.