public class Messages extends Object
activeweb_messages.
It is primarily used by the validation framework, but client code can use it as well for other things.| Modifier and Type | Method and Description |
|---|---|
static String |
message(String key,
Locale locale,
Object... params)
Looks for a localized property/message in
activeweb_messages bundle. |
static String |
message(String key,
Object... params)
Looks for a property/message in
activeweb_messages bundle. |
public static String message(String key, Locale locale, Object... params)
activeweb_messages bundle.key - key of the property.locale - locale of a bundle.params - list of parameters for a message. The order of parameters in this list will correspond to the
numeric order in the parameters listed in the message and has nothing to do with a physical order. This means
that the 0th parameter in the list will correspond to {0}, 1st to {1} and so on.public static String message(String key, Object... params)
activeweb_messages bundle.
Uses Locale supplied by request.key - key of the property.params - list of substitution parameters for a message.Copyright © 2020 JavaLite. All rights reserved.