Enhance Javadoc

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@881204 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2009-11-17 09:13:49 +00:00
parent 0714795b6f
commit a14051481e
1 changed files with 8 additions and 8 deletions

View File

@ -84,7 +84,7 @@ public class ExtendedMessageFormat extends MessageFormat {
/**
* Create a new ExtendedMessageFormat for the default locale.
*
* @param pattern String
* @param pattern the pattern to use, not null
* @throws IllegalArgumentException in case of a bad pattern.
*/
public ExtendedMessageFormat(String pattern) {
@ -94,8 +94,8 @@ public ExtendedMessageFormat(String pattern) {
/**
* Create a new ExtendedMessageFormat.
*
* @param pattern String
* @param locale Locale
* @param pattern the pattern to use, not null
* @param locale the locale to use, not null
* @throws IllegalArgumentException in case of a bad pattern.
*/
public ExtendedMessageFormat(String pattern, Locale locale) {
@ -105,8 +105,8 @@ public ExtendedMessageFormat(String pattern, Locale locale) {
/**
* Create a new ExtendedMessageFormat for the default locale.
*
* @param pattern String
* @param registry Registry of format factories: Map<String, ? extends FormatFactory>
* @param pattern the pattern to use, not null
* @param registry the registry of format factories, may be null
* @throws IllegalArgumentException in case of a bad pattern.
*/
public ExtendedMessageFormat(String pattern, Map<String, ? extends FormatFactory> registry) {
@ -116,9 +116,9 @@ public ExtendedMessageFormat(String pattern, Map<String, ? extends FormatFactory
/**
* Create a new ExtendedMessageFormat.
*
* @param pattern String
* @param locale Locale
* @param registry Registry of format factories: Map<String, ? extends FormatFactory>
* @param pattern the pattern to use, not null
* @param locale the locale to use, not null
* @param registry the registry of format factories, may be null
* @throws IllegalArgumentException in case of a bad pattern.
*/
public ExtendedMessageFormat(String pattern, Locale locale, Map<String, ? extends FormatFactory> registry) {