Interface FormAttributeListener

    • Method Detail

      • labelChanged

        default void labelChanged​(Form form,
                                  Component field,
                                  java.lang.String previousLabel)
        Called when a field's label attribute has changed.
        Parameters:
        form - The enclosing form.
        field - The field whose form label has changed.
        previousLabel - The previous form label for this field.
      • requiredChanged

        default void requiredChanged​(Form form,
                                     Component field)
        Called when a fields's required attribute has changed.
        Parameters:
        form - The enclosing form.
        field - The field that is or is not now required.
      • flagChanged

        default void flagChanged​(Form form,
                                 Component field,
                                 Form.Flag previousFlag)
        Called when a field's flag attribute has changed.
        Parameters:
        form - The enclosing form.
        field - The field whose flag attribute has changed.
        previousFlag - The previous flag value for this field.