C - Concrete configurator typepublic interface HasTitleConfigurator<C extends HasTitleConfigurator<C>>
| Modifier and Type | Method and Description |
|---|---|
default C |
description(com.holonplatform.core.i18n.Localizable description)
Sets the description text using a
Localizable message. |
default C |
description(String description)
Sets the description text.
|
default C |
description(String defaultDescription,
String messageCode,
Object... arguments)
Sets the description using a localizable
messageCode. |
C |
title(com.holonplatform.core.i18n.Localizable title)
Sets the title text using a
Localizable message. |
default C |
title(String title)
Sets the title text.
|
default C |
title(String defaultTitle,
String messageCode,
Object... arguments)
Sets the title text using a localizable
messageCode. |
C title(com.holonplatform.core.i18n.Localizable title)
Localizable message.
Browsers typically use the title to show a tooltip when hovering an element
HTML markup is not supported.
A null value will remove the title.
title - Localizable title message (may be null)LocalizationProviderdefault C title(String title)
Browsers typically use the title to show a tooltip when hovering an element
HTML markup is not supported.
A null value will remove the title.
title - The title to set (may be null)default C title(String defaultTitle, String messageCode, Object... arguments)
messageCode.
Browsers typically use the title to show a tooltip when hovering an element
HTML markup is not supported.
defaultTitle - Default title if no translation is available for given messageCodemessageCode - Title translation message keyarguments - Optional translation argumentsLocalizationProviderdefault C description(com.holonplatform.core.i18n.Localizable description)
Localizable message.
The description is set using the title attribute. Browsers typically use the title to show a tooltip
when hovering an element
HTML markup is not supported.
A null value will remove the description.
description - Localizable description message (may be null)LocalizationProviderdefault C description(String description)
title(String).
The description is set using the title attribute. Browsers typically use the title to show a tooltip
when hovering an element
HTML markup is not supported.
A null value will remove the title.
description - The description to set (may be null)default C description(String defaultDescription, String messageCode, Object... arguments)
messageCode.
The description is set using the title attribute. Browsers typically use the title to show a tooltip
when hovering an element
HTML markup is not supported.
defaultDescription - Default description if no translation is available for given messageCodemessageCode - Description translation message keyarguments - Optional translation argumentsLocalizationProviderCopyright © 2020 The Holon Platform. All rights reserved.