blob: 4a1dd468c158e643e9e7fc15b50ef76d0ebae301 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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.ui.views.markers.internal;
import java.text.MessageFormat;
import java.util.ResourceBundle;
public class Messages {
private final static ResourceBundle bundle = ResourceBundle.getBundle(Messages.class.getName());
private Messages() {
super();
}
public static String format(String key, Object[] args) {
return MessageFormat.format(getString(key), args);
}
public static String getString(String key) {
return Util.getString(bundle, key);
}
}