1 /*******************************************************************************
2  *  Copyright (c) 2019 IBM Corporation and others.
3  *
4  *  This program and the accompanying materials
5  *  are made available under the terms of the Eclipse Public License 2.0
6  *  which accompanies this distribution, and is available at
7  *  https://www.eclipse.org/legal/epl-2.0/
8  *
9  *  SPDX-License-Identifier: EPL-2.0
10  *
11  *  Contributors:
12  *     Andrew Obuchowicz <aobuchow@redhat.com>
13  *******************************************************************************/
14 package org.eclipse.pde.internal.ui.correction;
15 
16 import org.eclipse.osgi.util.NLS;
17 
18 public class Messages extends NLS {
19 	private static final String BUNDLE_NAME = "org.eclipse.pde.internal.ui.correction.messages"; //$NON-NLS-1$
20 	public static String ReplaceExecEnvironment_Marker_Label;
21 	static {
22 		// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class)23 		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
24 	}
25 
Messages()26 	private Messages() {
27 	}
28 }
29