blob: 2164ffa47d8238c90508a4611681553f340e03b4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.osgi.framework.adaptor.core;
import org.eclipse.osgi.framework.msg.MessageFormat;
/**
* This class retrieves strings from a resource bundle
* and returns them, formatting them with MessageFormat
* when required.
*/
public class AdaptorMsg {
static public MessageFormat formatter;
// Attempt to load the message bundle.
static {
formatter = new MessageFormat("org.eclipse.osgi.framework.adaptor.core.ExternalMessages");
}
}