Interface I18nSupport

All Superinterfaces:
ConfigBeanSpec

@ClassVersion(sourceVersion="$Id: I18nSupport.java 1061 2023-09-25 16:32:43Z tquadrat $") @API(status=STABLE, since="0.0.2") public interface I18nSupport extends ConfigBeanSpec

A configuration bean specification has to extend this interface in order to get the i18n support.

The extending bean needs to provide two String constants:

If the annotation processor cannot find these annotations in the configuration bean specification, it will throw an error. This behaviour is different from that when the i18n support is used independent from a configuration bean.

When the methods

TODO ??
Note:
  • The configuration bean specification may not define a setter for the resource bundle property if it extends this interface!
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: I18nSupport.java 1061 2023-09-25 16:32:43Z tquadrat $
Since:
0.0.2
UML Diagram
UML Diagram for "org.tquadrat.foundation.config.I18nSupport"

UML Diagram for "org.tquadrat.foundation.config.I18nSupport"

UML Diagram for "org.tquadrat.foundation.config.I18nSupport"
  • Method Details

    • getMessage

      default String getMessage(String messageId, Object... args)
      Returns the message for the given message id.
      Parameters:
      messageId - The message id.
      args - The message arguments.
      Returns:
      The message.
    • getMessage

      default String getMessage(int messageId, Object... args)
      Returns the message for the given message id.
      Parameters:
      messageId - The message id.
      args - The message arguments.
      Returns:
      The message.
    • getMessagePrefix

      Returns the message prefix.
      Returns:
      The message prefix.
      See Also:
    • getString

      default <E extends Enum<?>> String getString(E value)
      Returns the String representation for the given enum.
      Type Parameters:
      E - The type of the enum value.
      Parameters:
      value - The enum value.
      Returns:
      The String representation.
    • getText

      default String getText(Class<?> sourceClass, TextUse use, String id, Object... args)
      Returns the text for the key that will be composed of the given components.
      Parameters:
      sourceClass - The class that defines the text.
      use - The text use.
      id - The id for the text.
      args - The text arguments.
      Returns:
      The text.
      See Also:
    • getText

      default String getText(String key, Object... args)
      Returns the text for the given key.
      Parameters:
      key - The resource bundle key for the text.
      args - The text arguments.
      Returns:
      The text.