Skip to main content
summaryrefslogtreecommitdiffstats
blob: b5512df783802dd3551afdce0c219067fd41a92b (plain) (blame)
1
2
3
4
5
6
7
8
package org.eclipse.e4.tools.services;

import org.eclipse.osgi.service.localization.BundleLocalization;

public interface IMessageFactoryService {
	public <M> M createInstance(final String locale, final Class<M> messages, BundleLocalization localization)
			throws InstantiationException, IllegalAccessException;
}

Back to the top