Package org.eclipse.net4j.util.om
Interface OMBundle.TranslationSupport
- Enclosing interface:
- OMBundle
public static interface OMBundle.TranslationSupport
A facility for accessing
resource bundles
.- Author:
- Eike Stepper
-
Method Summary
Modifier and TypeMethodDescriptionReturns the string resource associated with the key.Returns the string resource associated with the key.Returns a string resource associated with the key, and performs substitutions.Returns a string resource associated with the key, and performs substitutions.void
setShouldTranslate
(boolean shouldTranslate) Sets whether strings should be translated by default.boolean
Indicates whether strings should be translated by default.
-
Method Details
-
shouldTranslate
boolean shouldTranslate()Indicates whether strings should be translated by default.- Returns:
true
if strings should be translated by default;false
otherwise.
-
setShouldTranslate
void setShouldTranslate(boolean shouldTranslate) Sets whether strings should be translated by default.- Parameters:
shouldTranslate
- whether strings should be translated by default.
-
getString
Returns the string resource associated with the key.- Parameters:
key
- the key of the string resource.- Returns:
- the string resource associated with the key.
-
getString
Returns the string resource associated with the key.- Parameters:
key
- the key of the string resource.translate
- whether the result is to be translated to the current locale.- Returns:
- the string resource associated with the key.
-
getString
Returns a string resource associated with the key, and performs substitutions.- Parameters:
key
- the key of the string.args
- the message substitutions.- Returns:
- a string resource associated with the key.
- See Also:
-
getString
Returns a string resource associated with the key, and performs substitutions.- Parameters:
key
- the key of the string.translate
- whether the result is to be translated to the current locale.args
- the message substitutions.- Returns:
- a string resource associated with the key.
- See Also:
-