All Implemented Interfaces:
Styleable, EventTarget, Skinnable

@ClassVersion(sourceVersion="$Id: ErrorDisplay.java 1112 2024-03-10 14:16:51Z tquadrat $") @API(status=STABLE, since="0.4.3") public final class ErrorDisplay extends FoundationFXControl

A control to display multiple error messages inside a window.

The error messages will be added through a call to addMessage() and they can be removed again by calling removeMessage(). The id identifies the respective message.

The messages are displayed in the sequence they were added.

To automate the display of error messages, you can create a message trigger, by calling addMessageTrigger(). The id of the trigger is also the id of the message that is controlled through the message trigger.

The messages itself are displayed through instances of Label that has the CSS Style Class "errorDisplay".

Note:
  • The minimum height for an ErrorDisplay control is 55.0. The vertical scrollbar does not work properly for smaller values.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: ErrorDisplay.java 1112 2024-03-10 14:16:51Z tquadrat $
Since:
0.4.3
UML Diagram
UML Diagram for "org.tquadrat.foundation.fx.control.ErrorDisplay"

UML Diagram for "org.tquadrat.foundation.fx.control.ErrorDisplay"

UML Diagram for "org.tquadrat.foundation.fx.control.ErrorDisplay"
  • Property Details

  • Field Details

  • Constructor Details

    • ErrorDisplay

      public ErrorDisplay()
      Creates a new instance of ErrorDisplay.
  • Method Details

    • addMessage

      public final void addMessage(String id, String message)
      Adds a message to display.
      Parameters:
      id - The id for the message; this allows to remove the message again later, when the error condition has been removed.
      message - This is the text to display.
    • addMessage

      public final void addMessage(String message)
      Adds a message to display, using the empty string as the id for the message.
      Parameters:
      message - This is the text to display.
    • addMessageTrigger

      public final void addMessageTrigger(String id, Supplier<String> messageSupplier, BooleanBinding binding)

      Adds a message trigger.

      The message provided by the given supplier will be displayed when the given instance of BooleanBinding evaluates to true.

      Use this to control the visibility of a particular message based on the status of the given binding.

      Parameters:
      id - The message id.
      messageSupplier - The supplier for the message text.
      binding - The binding that controls the appearance of the message.
      See Also:
    • addMessageTrigger

      public final void addMessageTrigger(Supplier<String> messageSupplier, BooleanBinding binding)

      Adds a message trigger, using the empty string as id.

      Use this to control the visibility of a particular message based on the status of the given binding.

      Parameters:
      messageSupplier - The supplier for the message text.
      binding - The binding that controls the appearance of the message.
    • createDefaultSkin

      protected final Skin<?> createDefaultSkin()
      Overrides:
      createDefaultSkin in class Control
    • emptyProperty

      Returns the reference to a boolean property that is true if currently no messages are displayed.
      Returns:
      The property reference.
      See Also:
    • getMessages

      public final Map<String,String> getMessages()
      Returns the messages.
      Returns:
      The messages.
    • isEmpty

      public final boolean isEmpty()
      Checks whether there are any messages to display.
      Returns:
      true if there are no messages to show, false otherwise.
    • messagesProperty

      Provides a reference to the messages property.
      Returns:
      The property reference.
      See Also:
    • removeMessage

      public final void removeMessage(String id)

      Removes the message with the given id.

      If there is no message with that id, nothing happens.

      Parameters:
      id - The id for the message to remove.
    • removeMessage

      public final void removeMessage()

      Removes the message with the empty string as its id.

      If there is no message with that id, nothing happens.

    • removeMessageTrigger

      public final void removeMessageTrigger(String id)

      Removes the message trigger with the given id.

      If there is no message trigger with that id, nothing happens.

      Parameters:
      id - The id for the message trigger to remove.
    • removeMessageTrigger

      public final void removeMessageTrigger()

      Removes the message trigger with the empty string as its id.

      If there is no message trigger with that id, nothing happens.