blob: d8ee1e91c32c1448216d14af029331b1fe5cdf61 [file] [log] [blame]
package org.eclipse.debug.internal.ui.views;
/**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v0.5
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v05.html
Contributors:
IBM Corporation - Initial implementation
**********************************************************************/
import java.util.MissingResourceException;
import java.util.ResourceBundle;
public class DebugUIViewsMessages {
private static final String BUNDLE_NAME =
"org.eclipse.debug.internal.ui.views.DebugUIViewsMessages"; //$NON-NLS-1$
private static final ResourceBundle RESOURCE_BUNDLE =
ResourceBundle.getBundle(BUNDLE_NAME);
private DebugUIViewsMessages() {
}
public static String getString(String key) {
try {
return RESOURCE_BUNDLE.getString(key);
} catch (MissingResourceException e) {
return '!' + key + '!';
}
}
}