Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 13c1e33bbf1a0ee9d70bb327c129d83058a638b5 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/**********************************************************************
 * Copyright (c) 2000, 2013 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 - Initial API and implementation
 * Johann Draschwandtner (Wind River) - [300988] Support filtering variables
 **********************************************************************/
package org.eclipse.debug.internal.ui.stringsubstitution;

import org.eclipse.osgi.util.NLS;

public class StringSubstitutionMessages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.debug.internal.ui.stringsubstitution.StringSubstitutionMessages";//$NON-NLS-1$

	public static String PromptExpanderBase_0;
	public static String PromptExpanderBase_1;
	public static String PromptingResolver_0;

	public static String RefreshTab_0;

	public static String RefreshTab_1;

	public static String RefreshTab_6;
	public static String RefreshTab_31;
	public static String RefreshTab_32;
	public static String RefreshTab_33;
	public static String RefreshTab_34;
	public static String RefreshTab_35;
	public static String RefreshTab_36;
	public static String RefreshTab_37;
	public static String RefreshTab_40;
	public static String RefreshTab_42;

	public static String ResourceSelector_0;

	public static String SelectedResourceResolver_0;

	public static String StringPromptExpander_0;

	public static String StringVariableSelectionDialog_1;
	public static String StringVariableSelectionDialog_2;
	public static String StringVariableSelectionDialog_3;
	public static String StringVariableSelectionDialog_6;
	public static String StringVariableSelectionDialog_7;
	public static String StringVariableSelectionDialog_8;
	public static String StringVariableSelectionDialog_0;
	public static String StringVariableSelectionDialog_9;
	public static String StringVariableSelectionDialog_10;
	public static String StringVariableSelectionDialog_11;


	static {
		// load message values from bundle file
		NLS.initializeMessages(BUNDLE_NAME, StringSubstitutionMessages.class);
	}

	public static String SystemPropertyArgumentSelector_0;

	public static String SystemPropertyArgumentSelector_1;
}

Back to the top