Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 16537adcf9d047836043b4cccd58283058cc7c9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*******************************************************************************
 * Copyright (c) 2012 Red Hat Inc. 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:
 *     Red Hat Inc. - initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.internal.gcov.launch;

import org.eclipse.osgi.util.NLS;

public class GcovLaunchMessages extends NLS {

	public static String GcovCompilerOptions_msg;
	public static String GcovCompileAgain_msg;

	static {
		NLS.initializeMessages(GcovLaunchMessages.class.getName(), GcovLaunchMessages.class);
	}

}

Back to the top