Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6f4038ef6629c54acff5ec7edf5a08940e42ad98 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*******************************************************************************
 * 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 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
 * -------- -------- -----------------------------------------------------------
 * yyyymmdd   bug     Email and other contact information
 * 20060329   127016 andyzhai@ca.ibm.com - Andy Zhai
 * 20060424   120137 kathy@ca.ibm.com - Kathy Chan
 *******************************************************************************/
package org.eclipse.jst.ws.internal.axis.consumption.ui;

import org.eclipse.osgi.util.NLS;

public final class AxisConsumptionUIMessages extends NLS {

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

	private AxisConsumptionUIMessages() {
		// Do not instantiate
	}

	public static String MSG_ERROR_DEFAULT_BEAN;
	public static String MSG_ERROR_WSDL_NO_DEFINITION;
	public static String MSG_ERROR_WSDL_NO_PORT;
	public static String MSG_ERROR_WRITE_WSDL;
	public static String MSG_ERROR_IMPORT_WSDL;
	public static String MSG_ERROR_WSDL_LOCATION_NOT_SET;
	public static String MSG_WARN_NO_JAVA_NATURE;
	public static String MSG_ERROR_BAD_BUILDPATH;
	public static String PROGRESS_INFO_COPY_AXIS_CFG;
	public static String MSG_ERROR_FILECOPY;
	public static String MSG_ERROR_REFRESH_PROJECT;
	public static String TOOLTIP_PWJB_PAGE;
	public static String TOOLTIP_PWJB_TEXT_FOLDER;
	public static String TOOLTIP_PWJB_CHECKBOX_GENPROXY;
	public static String PAGE_TITLE_WS_AXIS_PROXY;
	public static String PAGE_DESC_WS_AXIS_PROXY;
	public static String CHECKBOX_GENPROXY;
	public static String LABEL_FOLDER_NAME;
	public static String PAGE_TITLE_WS_BEAN2XML;
	public static String PAGE_TITLE_WS_XML2PROXY;
	public static String PAGE_DESC_P2N_MAPPINGS;
	public static String LABEL_MAPPING_PAIRS;
	public static String TABLE_COLUMN_LABEL_PACKAGE;
	public static String TABLE_COLUMN_LABEL_NAMESPACE;
	public static String LABEL_EXPLORE_MAPPINGS_XML2BEAN;
	public static String TOOLTIP_N2P_SHOW_MAPPINGS;
	public static String TOOLTIP_PPAE_PAGE;
	public static String TOOLTIP_PPAE_CHECKBOX_ALL_WANTED;
	public static String TOOLTIP_PPAE_CHECKBOX_HELPER_WANTED;
	public static String TOOLTIP_PPAE_CHECKBOX_WRAP_ARRAYS;
	public static String TOOLTIP_PPAE_CHECKBOX_USE_INHERITED_METHODS;
	public static String TOOLTIP_PPAE_CHECKBOX_VALIDATE_AGAINST_JAXRPC;
	public static String TOOLTIP_PPAE_COMBO_DEPLOY_SCOPE;
	public static String TOOLTIP_PPAE_FIELD_TIME_OUT;
	public static String TOOLTIP_PPAE_GROUP_WSDL2JAVA;
	public static String TOOLTIP_PPAE_GROUP_JAVA2WSDL;	
	public static String BUTTON_ALL_WANTED;
	public static String BUTTON_HELPER_WANTED;
	public static String BUTTON_WRAP_ARRAYS;
	public static String BUTTON_USE_INHERITED_METHODS;
	public static String BUTTON_VALIDATE_AGAINST_JAXRPC;
	public static String LABEL_DEPLOY_SCOPE;
	public static String LABEL_TIME_OUT;
	public static String GROUP_WSDL2JAVA_NAME;
	public static String GROUP_JAVA2WSDL_NAME;
	public static String DEPLOY_SCOPE_APPLICATION;
	public static String DEPLOY_SCOPE_REQUEST;
	public static String DEPLOY_SCOPE_SESSION;
	public static String MSG_ERROR_INVALID_TIME_OUT;
	public static String MSG_USE_JVM_ARGUMENT_FOR_TIME_OUT;
	static {
		NLS.initializeMessages(BUNDLE_NAME, AxisConsumptionUIMessages.class);
	}
}

Back to the top