| java.lang.Object org.apache.axis2.jaxws.i18n.MessageBundle
MessageBundle | public class MessageBundle (Code) | | Accept parameters for ProjectResourceBundle, but defer object instantiation (and therefore
resource bundle loading) until required.
|
Method Summary | |
public String | getMessage(String key) | public String | getMessage(String key, String arg0) Gets a string message from the resource bundle for the given key. | public String | getMessage(String key, String arg0, String arg1) Gets a string message from the resource bundle for the given key. | public String | getMessage(String key, String arg0, String arg1, String arg2) Gets a string message from the resource bundle for the given key. | public String | getMessage(String key, String arg0, String arg1, String arg2, String arg3) Gets a string message from the resource bundle for the given key. | public String | getMessage(String key, String arg0, String arg1, String arg2, String arg3, String arg4) Gets a string message from the resource bundle for the given key. | public String | getMessage(String key, String[] array) Gets a string message from the resource bundle for the given key. | final public ProjectResourceBundle | getResourceBundle() |
getMessage | public String getMessage(String key, String arg0) throws MissingResourceException(Code) | | Gets a string message from the resource bundle for the given key. The message may contain
variables that will be substituted with the given arguments. Variables have the format:
This message has two variables: {0} and {1}
Parameters: key - The resource key Parameters: arg0 - The argument to place in variable {0} The message |
getMessage | public String getMessage(String key, String arg0, String arg1) throws MissingResourceException(Code) | | Gets a string message from the resource bundle for the given key. The message may contain
variables that will be substituted with the given arguments. Variables have the format:
This message has two variables: {0} and {1}
Parameters: key - The resource key Parameters: arg0 - The argument to place in variable {0} Parameters: arg1 - The argument to place in variable {1} The message |
getMessage | public String getMessage(String key, String arg0, String arg1, String arg2) throws MissingResourceException(Code) | | Gets a string message from the resource bundle for the given key. The message may contain
variables that will be substituted with the given arguments. Variables have the format:
This message has two variables: {0} and {1}
Parameters: key - The resource key Parameters: arg0 - The argument to place in variable {0} Parameters: arg1 - The argument to place in variable {1} Parameters: arg2 - The argument to place in variable {2} The message |
getMessage | public String getMessage(String key, String arg0, String arg1, String arg2, String arg3) throws MissingResourceException(Code) | | Gets a string message from the resource bundle for the given key. The message may contain
variables that will be substituted with the given arguments. Variables have the format:
This message has two variables: {0} and {1}
Parameters: key - The resource key Parameters: arg0 - The argument to place in variable {0} Parameters: arg1 - The argument to place in variable {1} Parameters: arg2 - The argument to place in variable {2} Parameters: arg3 - The argument to place in variable {3} The message |
getMessage | public String getMessage(String key, String arg0, String arg1, String arg2, String arg3, String arg4) throws MissingResourceException(Code) | | Gets a string message from the resource bundle for the given key. The message may contain
variables that will be substituted with the given arguments. Variables have the format:
This message has two variables: {0} and {1}
Parameters: key - The resource key Parameters: arg0 - The argument to place in variable {0} Parameters: arg1 - The argument to place in variable {1} Parameters: arg2 - The argument to place in variable {2} Parameters: arg3 - The argument to place in variable {3} Parameters: arg4 - The argument to place in variable {4} The message |
getMessage | public String getMessage(String key, String[] array) throws MissingResourceException(Code) | | Gets a string message from the resource bundle for the given key. The message may contain
variables that will be substituted with the given arguments. Variables have the format:
This message has two variables: {0} and {1}
Parameters: key - The resource key Parameters: array - An array of objects to place in corresponding variables The message |
|
|