Interface ConnectorMessages
-
- All Known Implementing Classes:
ConnectorMessagesImpl
public interface ConnectorMessages
Message catalog for a given connector.- See Also:
CurrentLocale
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
format(String key, String dflt, Object... args)
Formats the given message key in theCurrentLocale
.
-
-
-
Method Detail
-
format
String format(String key, String dflt, Object... args)
Formats the given message key in theCurrentLocale
.- Parameters:
key
- The message key to format.dflt
- The default message if key is not found. If null, defaults to key.args
- Parameters with which to format the message.- Returns:
- The formatted string.
-
-