Skip to main content
summaryrefslogtreecommitdiffstats
blob: 325234d9afe82614c2389051ce81e148b2d270f2 (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
/*******************************************************************************
 * Copyright (c) 2000, 2005 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.wst.ws.internal.ui;

import org.eclipse.osgi.util.NLS;

public final class WstWSUIPluginMessages extends NLS {

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

	private WstWSUIPluginMessages() {
		// Do not instantiate
	}

	public static String PLUGIN_NAME;
	public static String PLUGIN_VENDOR;
	public static String PLUGIN_DESC;
	public static String PLUGIN_NEW_CATEGORY_NAME_WS;
	public static String PREFERENCE_CATEGORY_WSI;
	public static String STOP_NON_WSI;
	public static String WARN_NON_WSI;
	public static String IGNORE_NON_WSI;
	public static String FOLLOW_WSI_PREFERENCE;
	public static String TOOLTIP_PWSI_PAGE;
	public static String TOOLTIP_PWSI_RADIO_STOP_NON_WSI;
	public static String TOOLTIP_PWSI_RADIO_WARNING_NON_WSI;
	public static String TOOLTIP_PWSI_RADIO_IGNORE_NON_WSI;
	public static String TOOLTIP_PWSI_RADIO_FOLLOW_WSI_PREFERENCE;
	public static String LABEL_WSI_SSBP;
	public static String TOOLTIP_PWSI_SSBP_LABEL;
	public static String TOOLTIP_PWSI_SSBP_COMBO;
	public static String LABEL_WSI_AP;
	public static String TOOLTIP_PWSI_AP_LABEL;
	public static String TOOLTIP_PWSI_AP_COMBO;
	public static String LABEL_WSDLVAL;
	public static String LABEL_WSDLVAL_NONE;
	public static String LABEL_WSDLVAL_REMOTE;
	public static String LABEL_WSDLVAL_ALL;
	public static String LABEL_WAIT_FOR_WSDLVAL;
	public static String BUTTON_WAIT_FOR_WSDLVAL;
	public static String TOOLTIP_PWSI_RADIO_WSDLVAL_NONE;
	public static String TOOLTIP_PWSI_RADIO_WSDLVAL_REMOTE;
	public static String TOOLTIP_PWSI_RADIO_WSDLVAL_ALL;
	public static String TOOLTIP_PWSI_WSDLVAL_LABEL;
	public static String TOOLTIP_PWSI_LABEL_WAIT_FOR_WSDLVAL;
	public static String TOOLTIP_PWSI_BUTTON_WAIT_FOR_WSDLVAL;

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

Back to the top