C - Concrete configurator typepublic interface HasLabelConfigurator<C extends HasLabelConfigurator<C>>
HasLabel type components.| Modifier and Type | Method and Description |
|---|---|
C |
label(com.holonplatform.core.i18n.Localizable label)
Sets the label text using a
Localizable message. |
default C |
label(String label)
Sets the label text, replacing any previous content.
|
default C |
label(String defaultLabel,
String messageCode,
Object... arguments)
Sets the label text using a localizable
messageCode. |
C label(com.holonplatform.core.i18n.Localizable label)
Localizable message.
The text value is interpred as plain text and the HTML markup is not supported.
A null value is interpreted as an empty text.
label - Localizable label text message (may be null)LocalizationProviderdefault C label(String label)
The text value is interpred as plain text and the HTML markup is not supported.
A null text value is interpreted as an empty text.
label - The label text to setdefault C label(String defaultLabel, String messageCode, Object... arguments)
messageCode.
The text value is interpred as plain text and the HTML markup is not supported.
defaultLabel - Default label text if no translation is available for given messageCodemessageCode - Label text translation message keyarguments - Optional translation argumentsLocalizationProviderCopyright © 2019 The Holon Platform. All rights reserved.