-
public interface NlsMessageFormatterFactory
This is the interface to create anNlsFormatter
.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description NlsMessageFormatter
create(String message)
This method creates a newNlsMessageFormatter
for the givenmessage
.static NlsMessageFormatterFactory
get()
-
-
-
Method Detail
-
create
NlsMessageFormatter create(String message)
This method creates a newNlsMessageFormatter
for the givenmessage
.
The format of themessage
is described inNlsMessage
.- Parameters:
message
- is the template for the message where potentialarguments will be filled in
.- Returns:
- the
NlsMessageFormatter
for the givenmessage
.
-
get
static NlsMessageFormatterFactory get()
- Returns:
- the instance of
NlsMessageFormatterFactory
.
-
-