You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by sc...@apache.org on 2009/11/17 10:13:49 UTC

svn commit: r881204 - /commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/ExtendedMessageFormat.java

Author: scolebourne
Date: Tue Nov 17 09:13:49 2009
New Revision: 881204

URL: http://svn.apache.org/viewvc?rev=881204&view=rev
Log:
Enhance Javadoc

Modified:
    commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/ExtendedMessageFormat.java

Modified: commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/ExtendedMessageFormat.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/ExtendedMessageFormat.java?rev=881204&r1=881203&r2=881204&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/ExtendedMessageFormat.java (original)
+++ commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/ExtendedMessageFormat.java Tue Nov 17 09:13:49 2009
@@ -84,7 +84,7 @@
     /**
      * 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 @@
     /**
      * 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 @@
     /**
      * 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 @@
     /**
      * 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) {