blob: 6a2fe9eb2476cd92194213d4f362901a7f3fbaad [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Dirk Fauth and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Dirk Fauth <dirk.fauth@gmail.com> - initial API and implementation
******************************************************************************/
package org.eclipse.e4.core.services.translation;
import java.util.ResourceBundle;
import org.eclipse.osgi.service.localization.BundleLocalization;
import org.osgi.framework.Bundle;
/**
* The interface of the service that gets {@link ResourceBundle} objects from a given bundle with a
* given locale.
* <p>
* This service abstracts out the reference to the {@link BundleLocalization} and enables the
* possibility to load {@link ResourceBundle}s from different locations than the default OSGi
* context.
* </p>
*
* @since 1.2
*/
public interface ResourceBundleProvider {
/**
* 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, or <code>null</code> if the default locale is to be
* 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.
*/
ResourceBundle getResourceBundle(Bundle bundle, String locale);
}