Skip to main content
summaryrefslogtreecommitdiffstats
blob: 96849bcd59049a731207a4350a1b4811256cfdac (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
/*******************************************************************************
 * Copyright (c) 2000, 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
 * yyyymmdd bug      Email and other contact information
 * -------- -------- -----------------------------------------------------------
 * 20060509   119296 pmoogk@ca.ibm.com - Peter Moogk
 * 20080221 146023 gilberta@ca.ibm.com - Gilbert Andrews 
 * 20080402   222094 kathy@ca.ibm.com - Kathy Chan, Update properties file.
 *******************************************************************************/
package org.eclipse.wst.command.internal.env.ui;

import org.eclipse.osgi.util.NLS;

public final class EnvironmentUIMessages extends NLS {

	private static final String BUNDLE_NAME = "org.eclipse.wst.command.internal.env.ui.EnvironmentUI";//$NON-NLS-1$

	private EnvironmentUIMessages() {
		// Do not instantiate
	}

	public static String BUTTON_SHOW_ALL_DIALOGS;
	public static String BUTTON_HIDE_ALL_DIALOGS;
	public static String CHECKBOX_DO_NOT_SHOW_DIALOG_AGAIN;
	public static String TOOLTIP_PPAD_PAGE;
	public static String TOOLTIP_DO_NOT_SHOW_DIALOG_AGAIN;
	public static String TOOLTIP_PPAD_BUTTON_SHOW_ALL;
	public static String TOOLTIP_PPAD_BUTTON_HIDE_ALL;
	public static String TOOLTIP_PPAD_COMBO_RUNTIME;
	public static String TOOLTIP_PPAD_COMBO_SCENARIO;
	public static String MSG_ERROR_WIZARD_ID_NOT_FOUND;
	public static String WIZARD_TITLE_ANT;
	public static String WIZARD_PAGE_TITLE_ANT;
	public static String WIZARD_PAGE_DESC_ANT;
	public static String MSG_STATUS_COPYING_ANT_FILES;
	public static String MSG_ERR_COPYING_ANT_FILES;
	public static String MSG_ERR_ANT_FILES_NOT_FOUND;
	public static String MSG_WARNING_FILE_EXISTS;
	public static String DIALOG_TITLE_OVERWRITE;
	public static String MSG_ERROR_OPERATION_TIMED_OUT;
	public static String LABEL_RUNTIMES_LIST;
	public static String LABEL_SERVERS_LIST;

	static {
		NLS.initializeMessages(BUNDLE_NAME, EnvironmentUIMessages.class);
	}
}

Back to the top