From a14051481e520da590e49464f66caa4419398c59 Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Tue, 17 Nov 2009 09:13:49 +0000 Subject: [PATCH] Enhance Javadoc git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@881204 13f79535-47bb-0310-9956-ffa450edef68 --- .../commons/lang/text/ExtendedMessageFormat.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/java/org/apache/commons/lang/text/ExtendedMessageFormat.java b/src/java/org/apache/commons/lang/text/ExtendedMessageFormat.java index 4bd76dcff..1e01a0673 100644 --- a/src/java/org/apache/commons/lang/text/ExtendedMessageFormat.java +++ b/src/java/org/apache/commons/lang/text/ExtendedMessageFormat.java @@ -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 + * @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 registry) { @@ -116,9 +116,9 @@ public ExtendedMessageFormat(String pattern, Map + * @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 registry) {