Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5a8b4e208b5e69b85e691604892a1a23782fb4eb (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
/*******************************************************************************
 * Copyright (c) 2000, 2006 IBM Corporation and others.
 * All rights reserved. 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:
 * IBM Corporation - initial API and implementation
 * yyyymmdd bug      Email and other contact information
 * -------- -------- -----------------------------------------------------------
 * 20060420   132905 cbrealey@ca.ibm.com - Chris Brealey          
 * 20060607   145604 cbrealey@ca.ibm.com - Chris Brealey          
 *******************************************************************************/
package org.eclipse.jst.ws.internal;

import org.eclipse.osgi.util.NLS;

public final class WSPluginMessages extends NLS {

	private static final String BUNDLE_NAME = "org.eclipse.jst.ws.internal.WSPlugin";//$NON-NLS-1$

	private WSPluginMessages() {
		// Do not instantiate
	}

	public static String MSG_ERROR_SERVER;
	public static String ANY_FILTER_NAME;
	public static String ANY_FILTER_DESC;
	public static String ERROR_SELECTION_TRANSFORM;
	public static String MSG_JAXRPC11_NOT_COMPLIANT;
	public static String MSG_JAXRPC11_UNRESOLVED_CLASS;
	public static String MSG_JAXRPC11_UNRESOLVED_TYPE;
	public static String MSG_JAXRPC11_RULE_0001;
	public static String MSG_JAXRPC11_RULE_0002;
	public static String MSG_JAXRPC11_RULE_0003;
	public static String MSG_JAXRPC11_RULE_0004;
	public static String MSG_JAXRPC11_RULE_0005;
	public static String MSG_JAXRPC11_RULE_0006;
	public static String MSG_JAXRPC11_RULE_0007;
	public static String MSG_JAXRPC11_RULE_0008;
	public static String MSG_JAXRPC11_RULE_0009;
	public static String MSG_JAXRPC11_RULE_0010;

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

Back to the top