| org.apache.tapestry.ioc.Messages
All known Subclasses: org.apache.tapestry.ioc.util.AbstractMessages,
Messages | public interface Messages (Code) | | Provides access to a messages catalog, a set of properties files that provide localized messages
for a particular locale. The message catalog consists of keys and values and follows the
semantics of a Java
java.util.ResourceBundle with some changes.
|
contains | boolean contains(String key)(Code) | | Returns true if the bundle contains the named key.
|
format | String format(String key, Object... args)(Code) | | Convienience for accessing a formatter and formatting a localized message with arguments.
|
get | String get(String key)(Code) | | Returns the localized message for the given key. If catalog does not contain such a key, then
a modified version of the key is returned (converted to upper case and enclosed in brackets).
Parameters: key - localized message for key, or placeholder |
|
|