Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: af47d8b4e8d1e2e3dc169d4673265e6cbdb1b6c7 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*******************************************************************************
 * Copyright (c) 2004, 2013 QNX Software Systems 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:
 *     QNX Software Systems - Initial API and implementation
 *     Sergey Prigogin (Google)
 *******************************************************************************/
package org.eclipse.cdt.debug.internal.core;

import org.eclipse.osgi.util.NLS;

public class InternalDebugCoreMessages extends NLS {
	public static String CGlobalVariableManager_0;
	public static String CMemoryBlockRetrievalExtension_0;
	public static String CMemoryBlockRetrievalExtension_1;
	public static String CMemoryBlockRetrievalExtension_2;
	public static String CMemoryBlockRetrievalExtension_3;
	public static String CMemoryBlockRetrievalExtension_4;
	public static String CMemoryBlockRetrievalExtension_invalid_encoded_address;
	public static String CMemoryBlockRetrievalExtension_CDebugTarget_not_available;
	public static String DebugConfiguration_0;
	public static String CDebugAdapter_0;
	public static String CDebugAdapter_1;
	public static String CDebugAdapter_Program_file_not_specified;
	public static String CoreBuildLaunchBarTracker_Job;
	public static String CoreBuildLaunchConfigDelegate_noBinaries;
	public static String CoreBuildLocalRunLaunchDelegate_ErrorLaunching;
	public static String CRegisterManager_0;
	public static String CRegisterManager_1;
	public static String StringSubstitutionEngine_undefined_variable;
	public static String StringSubstitutionEngine_unexpected_argument;

	private InternalDebugCoreMessages() {
	}

	static {
		// Load message values from a bundle file.
		NLS.initializeMessages(InternalDebugCoreMessages.class.getName(), InternalDebugCoreMessages.class);
	}

}

Back to the top