Package mondrian.gui.validate
Interface Messages
-
- All Known Implementing Classes:
WorkbenchMessages
public interface Messages
Message provider. Extracted interface frommondrian.gui.I18n
.- Author:
- mlowery
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getFormattedString(java.lang.String stringId, java.lang.String defaultValue, java.lang.Object... args)
Returns the string with given key with substitutions.java.lang.String
getString(java.lang.String stringId, java.lang.String defaultValue)
Returns the string with given key.
-
-
-
Method Detail
-
getString
java.lang.String getString(java.lang.String stringId, java.lang.String defaultValue)
Returns the string with given key.- Parameters:
stringId
- keydefaultValue
- default if key does not exist- Returns:
- message
-
getFormattedString
java.lang.String getFormattedString(java.lang.String stringId, java.lang.String defaultValue, java.lang.Object... args)
Returns the string with given key with substitutions.- Parameters:
stringId
- KeydefaultValue
- default if key does not existargs
- arguments to substitute- Returns:
- message
-
-