blob: 61434e98d0525b8097f459ff751ffb5aba3d0e48 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2014 Wind River Systems, Inc. and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Markus Schorn - initial API and implementation
* Sergey Prigogin (Google)
*******************************************************************************/
package org.eclipse.cdt.internal.ui.util;
import org.eclipse.osgi.util.NLS;
import com.ibm.icu.text.MessageFormat;
public class Messages extends NLS {
public static String EditorUtility_calculatingChangedRegions_message;
public static String EditorUtility_error_calculatingChangedRegions;
public static String OpenExternalProblemAction_CannotReadExternalLocation;
public static String OpenExternalProblemAction_ErrorOpeningFile;
public static String format(String pattern, Object... arguments) {
return MessageFormat.format(pattern, arguments);
}
private Messages() {
// Do not instantiate
}
static {
NLS.initializeMessages(Messages.class.getName(), Messages.class);
}
}