/******************************************************************************* * Copyright (c) 2001, 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.wst.xsd.ui.internal.refactor; import java.text.MessageFormat; import java.util.MissingResourceException; import java.util.ResourceBundle; public class RefactoringMessages { private static final String RESOURCE_BUNDLE= "org.eclipse.wst.xsd.ui.internal.refactor.messages";//$NON-NLS-1$ private static ResourceBundle fgResourceBundle= ResourceBundle.getBundle(RESOURCE_BUNDLE); private RefactoringMessages() { } public static String getString(String key) { try { return fgResourceBundle.getString(key); } catch (MissingResourceException e) { return "!" + key + "!";//$NON-NLS-2$ //$NON-NLS-1$ } } public static String[] getStrings(String keys[]) { String[] result= new String[keys.length]; for (int i= 0; i < keys.length; i++) { result[i]= getString(keys[i]); } return result; } public static String getFormattedString(String key, Object arg) { return getFormattedString(key, new Object[] { arg }); } public static String getFormattedString(String key, Object[] args) { return MessageFormat.format(getString(key), args); } }