Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6057970197d7b8a360a453c10c8c0e787a1081b5 (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
/*******************************************************************************
 * Copyright (c) 2005, 2008 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 Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.debug.internal.ui.importexport.launchconfigurations;

import org.eclipse.osgi.util.NLS;

public class WizardMessages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.debug.internal.ui.importexport.launchconfigurations.WizardMessages"; //$NON-NLS-1$
	public static String ExportLaunchConfigurationsWizard_0;
	public static String ExportLaunchConfigurationsWizardPage_0;
	public static String ExportLaunchConfigurationsWizardPage_1;
	public static String ExportLaunchConfigurationsWizardPage_10;
	public static String ExportLaunchConfigurationsWizardPage_11;
	public static String ExportLaunchConfigurationsWizardPage_12;
	public static String ExportLaunchConfigurationsWizardPage_13;
	public static String ExportLaunchConfigurationsWizardPage_14;
	public static String ExportLaunchConfigurationsWizardPage_15;
	public static String ExportLaunchConfigurationsWizardPage_16;
	public static String ExportLaunchConfigurationsWizardPage_17;
	public static String ExportLaunchConfigurationsWizardPage_2;
	public static String ExportLaunchConfigurationsWizardPage_3;
	public static String ExportLaunchConfigurationsWizardPage_4;
	public static String ExportLaunchConfigurationsWizardPage_5;
	public static String ExportLaunchConfigurationsWizardPage_6;
	public static String ExportLaunchConfigurationsWizardPage_7;
	public static String ExportLaunchConfigurationsWizardPage_8;
	public static String ExportLaunchConfigurationsWizardPage_9;
	public static String ImportLaunchConfigurationsWizard_0;
	public static String ImportLaunchConfigurationsWizardPage_0;
	public static String ImportLaunchConfigurationsWizardPage_1;
	public static String ImportLaunchConfigurationsWizardPage_3;
	public static String ImportLaunchConfigurationsWizardPage_4;
	public static String ImportLaunchConfigurationsWizardPage_5;
	public static String ImportLaunchConfigurationsWizardPage_6;
	public static String ImportLaunchConfigurationsWizardPage_7;
	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, WizardMessages.class);
	}

	private WizardMessages() {
	}
}

Back to the top