Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2010-10-22 13:17:33 +0000
committerThomas Watson2010-10-22 13:17:33 +0000
commitbaaeca88d1d4e0a3a57d5bedcf9ccbf5a4e03ad9 (patch)
tree6233e521627c2492c640d65be4c09ad8a361ae32 /bundles
parentb813b0893199c92d4e1f7011c91903cb2514eb3c (diff)
downloadrt.equinox.framework-baaeca88d1d4e0a3a57d5bedcf9ccbf5a4e03ad9.tar.gz
rt.equinox.framework-baaeca88d1d4e0a3a57d5bedcf9ccbf5a4e03ad9.tar.xz
rt.equinox.framework-baaeca88d1d4e0a3a57d5bedcf9ccbf5a4e03ad9.zip
Bug 318640 - BundleLocalization#getLocalization() sometimes return null, but API says otherwisev20101022
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/localization/BundleLocalization.java13
1 files changed, 7 insertions, 6 deletions
diff --git a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/localization/BundleLocalization.java b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/localization/BundleLocalization.java
index ceda998c6..3e1140901 100644
--- a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/localization/BundleLocalization.java
+++ b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/localization/BundleLocalization.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2008 IBM Corporation and others.
+ * Copyright (c) 2004, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -25,13 +25,14 @@ import org.osgi.framework.Bundle;
public interface BundleLocalization {
/**
- * The getLocalization method gets a ResourceBundle object for the given
- * locale and bundle.
+ * Returns a <code>ResourceBundle</code> object for the given bundle and locale.
* @param bundle the bundle to get localization for
- * @param locale the name of the locale to get
+ * @param locale the name of the locale to get, or <code>null</code> if
+ * the default locale is to be used
*
- * @return A <code>ResourceBundle</code> object for the given bundle and locale.
- * If <code>null</code> is passed for the locale parameter, the default locale is used.
+ * @return A <code>ResourceBundle</code> object for the given bundle and locale,
+ * or <code>null</code> is returned if no ResourceBundle object can
+ * be loaded.
*/
public ResourceBundle getLocalization(Bundle bundle, String locale);
}

Back to the top