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:
parent
0714795b6f
commit
a14051481e
|
@ -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 class ExtendedMessageFormat extends MessageFormat {
|
|||
/**
|
||||
* 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 class ExtendedMessageFormat extends MessageFormat {
|
|||
/**
|
||||
* 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 class ExtendedMessageFormat extends MessageFormat {
|
|||
/**
|
||||
* 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) {
|
||||
|
|
Loading…
Reference in New Issue