Interface ISummaryKeyValuePair
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
SummaryKeyValuePair
public interface ISummaryKeyValuePair extends Serializable
A key value pair. Usually a list of these is displayed in a table on the UI.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
IKeyValueSummarizableElement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDisplayKey()StringgetDisplayKeyStyle()StringgetDisplayKeyStyleClass()StringgetDisplayValue()StringgetDisplayValueStyle()StringgetDisplayValueStyleClass()booleanisDisplayKeyHtml()booleanisDisplayKeyI18n()booleanisDisplayValueHtml()booleanisDisplayValueI18n()
-
-
-
Method Detail
-
getDisplayKey
String getDisplayKey()
- Returns:
- The data to display in the key column of the table.
-
getDisplayValue
String getDisplayValue()
- Returns:
- The data to display in the value column of the table.
-
isDisplayKeyI18n
boolean isDisplayKeyI18n()
- Returns:
- Whether the key 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.
-
isDisplayValueI18n
boolean isDisplayValueI18n()
- Returns:
- Whether the value 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.
-
isDisplayKeyHtml
boolean isDisplayKeyHtml()
- Returns:
- Whether the key contains HTML content. If
true, thegetDisplayKey()will be inserted into the HTML without any post-processing. Otherwise, special characters are escaped for HTML.
-
isDisplayValueHtml
boolean isDisplayValueHtml()
- Returns:
- Whether the value contains HTML content. If
true, thegetDisplayValue()will be inserted into the HTML without any post-processing. Otherwise, special characters are escaped for HTML.
-
getDisplayKeyStyle
String getDisplayKeyStyle()
- Returns:
- Inline style for the key column of the table. Is specified in the TD HTML tag.
-
getDisplayKeyStyleClass
String getDisplayKeyStyleClass()
- Returns:
- Style class for the key column of the table. Is specified in the TD HTML tag.
-
getDisplayValueStyle
String getDisplayValueStyle()
- Returns:
- Inline style for the value column of the table. Is specified in the TD HTML tag.
-
getDisplayValueStyleClass
String getDisplayValueStyleClass()
- Returns:
- Style class for the value column of the table. Is specified in the TD HTML tag.
-
-