Package org.apache.commons.jelly.tags
Class Resources
java.lang.Object
org.apache.commons.jelly.tags.Resources
Provides locale-neutral access to string resources. Only the documentation and code are in English. :-)
The major goal, aside from globalization, is convenience. Access to resources with no parameters is made in the form:
Resources.getMessage(MESSAGE_NAME);
Access to resources with one parameter works like
Resources.getMessage(MESSAGE_NAME, arg1);
... and so on.
- Author:
- Shawn Bayern
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic String
getMessage
(String name) Retrieves a message with no arguments.static String
getMessage
(String name, Object a1) Retrieves a message with one argument.static String
getMessage
(String name, Object[] a) Retrieves a message with arbitrarily many arguments.static String
getMessage
(String name, Object a1, Object a2) Retrieves a message with two arguments.static String
getMessage
(String name, Object a1, Object a2, Object a3) Retrieves a message with three arguments.static String
Retrieves a message with four arguments.static String
Retrieves a message with five arguments.static String
Retrieves a message with six arguments.
-
Constructor Details
-
Resources
public Resources()
-
-
Method Details
-
getMessage
Retrieves a message with no arguments.- Throws:
MissingResourceException
-
getMessage
Retrieves a message with arbitrarily many arguments.- Throws:
MissingResourceException
-
getMessage
Retrieves a message with one argument.- Throws:
MissingResourceException
-
getMessage
Retrieves a message with two arguments.- Throws:
MissingResourceException
-
getMessage
public static String getMessage(String name, Object a1, Object a2, Object a3) throws MissingResourceException Retrieves a message with three arguments.- Throws:
MissingResourceException
-
getMessage
public static String getMessage(String name, Object a1, Object a2, Object a3, Object a4) throws MissingResourceException Retrieves a message with four arguments.- Throws:
MissingResourceException
-
getMessage
public static String getMessage(String name, Object a1, Object a2, Object a3, Object a4, Object a5) throws MissingResourceException Retrieves a message with five arguments.- Throws:
MissingResourceException
-
getMessage
public static String getMessage(String name, Object a1, Object a2, Object a3, Object a4, Object a5, Object a6) throws MissingResourceException Retrieves a message with six arguments.- Throws:
MissingResourceException
-