You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2008/05/02 18:30:44 UTC

svn commit: r652805 - /incubator/sling/trunk/sling/i18n/src/main/java/org/apache/sling/i18n/ResourceBundleProvider.java

Author: cziegeler
Date: Fri May  2 09:30:44 2008
New Revision: 652805

URL: http://svn.apache.org/viewvc?rev=652805&view=rev
Log:
Fix javadocs.

Modified:
    incubator/sling/trunk/sling/i18n/src/main/java/org/apache/sling/i18n/ResourceBundleProvider.java

Modified: incubator/sling/trunk/sling/i18n/src/main/java/org/apache/sling/i18n/ResourceBundleProvider.java
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/sling/i18n/src/main/java/org/apache/sling/i18n/ResourceBundleProvider.java?rev=652805&r1=652804&r2=652805&view=diff
==============================================================================
--- incubator/sling/trunk/sling/i18n/src/main/java/org/apache/sling/i18n/ResourceBundleProvider.java (original)
+++ incubator/sling/trunk/sling/i18n/src/main/java/org/apache/sling/i18n/ResourceBundleProvider.java Fri May  2 09:30:44 2008
@@ -35,19 +35,19 @@
 
     /**
      * Returns a <code>ResourceBundle</code> for the given locale.
-     * 
+     *
      * @param locale The <code>Locale</code> for which to return the resource
      *            bundle. If this is <code>null</code> the default locale as
      *            returned by {@link #getDefaultLocale()} is assumed.
      * @return The <code>ResourceBundle</code> for the given locale
-     * @throws MissingResourceException If the service is not capable of
+     * @throws java.util.MissingResourceException If the service is not capable of
      *             returning a <code>ResourceBundle</code>
      */
     ResourceBundle getResourceBundle(Locale locale);
 
     /**
      * Returns a <code>ResourceBundle</code> for the given locale.
-     * 
+     *
      * @param baseName The base name for the resource bundle. If this is
      *            <code>null</code>, the same resource bundle will be
      *            returned as when calling the
@@ -56,7 +56,7 @@
      *            bundle. If this is <code>null</code> the default locale as
      *            returned by {@link #getDefaultLocale()} is assumed.
      * @return The <code>ResourceBundle</code> for the given locale
-     * @throws MissingResourceException If the service is not capable of
+     * @throws java.util.MissingResourceException If the service is not capable of
      *             returning a <code>ResourceBundle</code>
      */
     ResourceBundle getResourceBundle(String baseName, Locale locale);