You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by do...@apache.org on 2002/05/12 16:23:19 UTC

cvs commit: jakarta-avalon-excalibur/all/src/scratchpad/org/apache/avalon/excalibur/i18n AbstractBundle.java

donaldp     02/05/12 07:23:19

  Modified:    all/src/scratchpad/org/apache/avalon/excalibur/i18n
                        AbstractBundle.java
  Log:
  Fix some javadoc errors
  
  Revision  Changes    Path
  1.14      +3 -5      jakarta-avalon-excalibur/all/src/scratchpad/org/apache/avalon/excalibur/i18n/AbstractBundle.java
  
  Index: AbstractBundle.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/all/src/scratchpad/org/apache/avalon/excalibur/i18n/AbstractBundle.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- AbstractBundle.java	10 May 2002 02:51:13 -0000	1.13
  +++ AbstractBundle.java	12 May 2002 14:23:19 -0000	1.14
  @@ -15,7 +15,6 @@
       extends AbstractLogEnabled
       implements Bundle, Component
   {
  -
       /** bundle info */
       private BundleInfo bundleInfo;
   
  @@ -100,7 +99,7 @@
        * @param key           key
        * @param variables     map with variable values
        * @return              value with variable values substituted
  -     * @throws MissingResourceException if value was not found
  +     * @throws java.util.MissingResourceException if value was not found
        */
       public String getString( String key, Map variables )
       {
  @@ -114,7 +113,7 @@
        *
        * The default implementation just returns the key "as-is".
        *
  -     * @param key           user key
  +     * @param userKey       user key
        * @return              system key
        */
       public String convertKey( String userKey )
  @@ -127,7 +126,7 @@
        * provided in the map.
        *
        * @param value         value where to search for variables
  -     * @param dictionary    map with variable values
  +     * @param values        map with variable values
        * @return              value with variable values substituted
        */
       public String substitute( String value, Map values )
  @@ -177,5 +176,4 @@
           if( getLogger().isDebugEnabled() ) getLogger().debug( "Returning substituted value: " + result );
           return result.toString();
       }
  -
   }
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>