Interface ISummaryKeyValuePair
- All Superinterfaces:
- Serializable
- All Known Implementing Classes:
- SummaryKeyValuePair
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:
- 
Method SummaryModifier and TypeMethodDescriptionbooleanbooleanbooleanboolean
- 
Method Details- 
getDisplayKeyString getDisplayKey()- Returns:
- The data to display in the key column of the table.
 
- 
getDisplayValueString getDisplayValue()- Returns:
- The data to display in the value column of the table.
 
- 
isDisplayKeyI18nboolean 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.
 
- 
isDisplayValueI18nboolean 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.
 
- 
isDisplayKeyHtmlboolean 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.
 
- 
isDisplayValueHtmlboolean 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.
 
- 
getDisplayKeyStyleString getDisplayKeyStyle()- Returns:
- Inline style for the key column of the table. Is specified in the TD HTML tag.
 
- 
getDisplayKeyStyleClassString getDisplayKeyStyleClass()- Returns:
- Style class for the key column of the table. Is specified in the TD HTML tag.
 
- 
getDisplayValueStyleString getDisplayValueStyle()- Returns:
- Inline style for the value column of the table. Is specified in the TD HTML tag.
 
- 
getDisplayValueStyleClassString getDisplayValueStyleClass()- Returns:
- Style class for the value column of the table. Is specified in the TD HTML tag.
 
 
-