Return-Path: Delivered-To: apmail-incubator-sling-commits-archive@locus.apache.org Received: (qmail 90813 invoked from network); 2 May 2008 16:31:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 May 2008 16:31:05 -0000 Received: (qmail 89623 invoked by uid 500); 2 May 2008 16:31:07 -0000 Delivered-To: apmail-incubator-sling-commits-archive@incubator.apache.org Received: (qmail 89586 invoked by uid 500); 2 May 2008 16:31:07 -0000 Mailing-List: contact sling-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: sling-dev@incubator.apache.org Delivered-To: mailing list sling-commits@incubator.apache.org Received: (qmail 89575 invoked by uid 99); 2 May 2008 16:31:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 May 2008 09:31:07 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 May 2008 16:30:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6660C2388A03; Fri, 2 May 2008 09:30:44 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r652805 - /incubator/sling/trunk/sling/i18n/src/main/java/org/apache/sling/i18n/ResourceBundleProvider.java Date: Fri, 02 May 2008 16:30:44 -0000 To: sling-commits@incubator.apache.org From: cziegeler@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080502163044.6660C2388A03@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 ResourceBundle for the given locale. - * + * * @param locale The Locale for which to return the resource * bundle. If this is null the default locale as * returned by {@link #getDefaultLocale()} is assumed. * @return The ResourceBundle 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 ResourceBundle */ ResourceBundle getResourceBundle(Locale locale); /** * Returns a ResourceBundle for the given locale. - * + * * @param baseName The base name for the resource bundle. If this is * null, the same resource bundle will be * returned as when calling the @@ -56,7 +56,7 @@ * bundle. If this is null the default locale as * returned by {@link #getDefaultLocale()} is assumed. * @return The ResourceBundle 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 ResourceBundle */ ResourceBundle getResourceBundle(String baseName, Locale locale);