Skip to main content
summaryrefslogtreecommitdiffstats
blob: e3c57f151e888474599a176422de5dfea5a43ddf (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
/*******************************************************************************
 * Copyright (c) 2003, 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.jst.j2ee.internal.web.operations;

import org.eclipse.osgi.util.NLS;

public class ProjectSupportResourceHandler extends NLS {
	private static final String BUNDLE_NAME = "ProjectSupport";//$NON-NLS-1$

	private ProjectSupportResourceHandler() {
		// Do not instantiate
	}

	public static String Folder_name_cannot_be_the_same_as_Java_source_folder_5;
	public static String Target_Update_Op;
	public static String Operation_failed_due_to_SA_ERROR_;
	public static String Creating_Web_Project____UI_;
	public static String Update_ClassPath__UI_;
	public static String Could_not_rename_____2;
	public static String A_web_project_must_be_open_and_must_exist_for_properties_to_be_edited_30;
	public static String Operation_failed_due_to_IO_ERROR_;
	public static String Cannot_clone_TaglibInfo_1_EXC_;
	public static String Syntax_Error_in_the_links_UI_;
	public static String Sync_WLP_Op;
	public static String Catalog_Lib_Directory__UI_;
	public static String Generated_by_Web_Tooling_23;
	public static String _1concat_EXC_;
	public static String File_Serving_Enabler_7;
	public static String Sychronize_Class_Path_UI_;
	public static String Auto_Generated___File_Enabler_9;
	public static String Not_a_web_project_29;
	public static String Names_cannot_begin_or_end_with_whitespace_5;
	public static String The_character_is_invalid_in_a_context_root;
	public static String _24concat_INFO_;
	public static String Folder_name_cannot_be_the_same_as_Java_class_folder_6;
	public static String The_path_for_the_links_sta_EXC_;
	public static String Operation_failed_due_to_Ja_ERROR_;
	public static String Folder_name_cannot_be_empty_2;
	public static String Error_importing_Module_Fil_EXC_;
	public static String Operation_failed_due_to_Co_ERROR_;
	public static String Folder_names_cannot_be_equal_4;
	public static String Could_not_read_TLD_15;
	public static String Folder_name_is_not_valid;
	public static String Invalid_Servlet_Level_set_on_WebNature_3_EXC_;
	public static String Set_ClassPath__UI_;
	public static String Context_Root_cannot_be_empty_2;
	public static String Error_while_saving_links_s_EXC_;
	public static String UNABLE_TO_LOAD_MODULE_ERROR_;

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

	public static String getString(String key, Object[] args) {
		return NLS.bind(key, args);
	}
}

Back to the top