Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/Concepts/Text Provider Service"

(See Also)
m (Jbr.bsiag.com moved page Scout/Concepts/Text Provider Services to Scout/Concepts/Text Provider Service: Title should be singular)
(No difference)

Revision as of 05:03, 16 July 2014

The Scout documentation has been moved to https://eclipsescout.github.io/.

Text Provider Services are services responsible to provide localization for texts in the user interface. A typical application contains a such service contributed by the The Scout documentation has been moved to https://eclipsescout.github.io/..

Description

Note.png
TODO
Add a description


If your implementation of the service extends AbstractDynamicNlsTextProviderService you need to provide the path to your translations properties file by overwriting the getter getDynamicNlsBaseName.

  @Override
  protected String getDynamicNlsBaseName() {
    return "resources.texts.Texts";
  }

See Also

Back to the top