Interface ISummaryKeyValueText
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
SummaryKeyValueText
public interface ISummaryKeyValueText extends Serializable
Models text for the theISummaryKeyValueModel
that appears before or after the main table.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDisplayText()
String
getDisplayTextStyle()
String
getDisplayTextStyleClass()
Serializable[]
getParameters()
boolean
isDisplayTextHtml()
boolean
isDisplayTextI18n()
-
-
-
Method Detail
-
getDisplayText
String getDisplayText()
- Returns:
- The data to display.
-
getDisplayTextStyle
String getDisplayTextStyle()
- Returns:
- Inline style for the text .
-
getDisplayTextStyleClass
String getDisplayTextStyleClass()
- Returns:
- Style class for the text.
-
isDisplayTextHtml
boolean isDisplayTextHtml()
- Returns:
- Whether the text contains HTML content. If
true
, thegetDisplayText()
will be inserted into the HTML without any post-processing. Otherwise, special characters are escaped for HTML.
-
isDisplayTextI18n
boolean isDisplayTextI18n()
- Returns:
- Whether the text is an i18n key for a resource bundle, or literal text. If the former, the key is looked up in the custom resource bundle of the workflow element handler first, then in the built-in resource bundle of formcycle.
-
getParameters
Serializable[] getParameters()
- Returns:
- Optional parameters for the message, when
isDisplayTextI18n()
istrue
.
-
-