Interface Text


public interface Text
The Text interface represents a text that can be used anywhere in a form. All texts share the following characteristics:
  • They are multi-lingual: at runtime, the appropriate texts are automatically displayed in the runtime language
  • They can contain HTML markup
  • They can contain field variables prefixed by && which are substituted at runtime
Further documentation.
Since:
V4.4
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getText()
    Returns the text.
    void setText​(java.lang.String text)
    Sets the text.
  • Method Details

    • getText

      java.lang.String getText()
      Returns the text.
      Since:
      V4.4
      See Also:
      setText(String)
    • setText

      void setText​(java.lang.String text)
      Sets the text.

      Further documentation.

      Since:
      V4.4