Skip to main content
summaryrefslogtreecommitdiffstats
blob: 80f12da67157e5bd12e4193a648cc4bdf2e47ed7 (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
/*******************************************************************************
 * 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
 *******************************************************************************/
/*
 * Created on Nov 5, 2003
 *
 * To change the template for this generated file go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
package org.eclipse.wst.common.frameworks.internal.plugin;

/**
 * @author DABERG
 * 
 * To change the template for this generated type comment go to Window>Preferences>Java>Code
 * Generation>Code and Comments
 */
public class WTPCommonMessages {
	public static final String PROJECT_EXISTS_ERROR = "1"; //$NON-NLS-1$
	public static final String PROJECT_NOT_EAR = "2"; //$NON-NLS-1$
	public static final String INCOMPATABLE_J2EE_VERSIONS = "3"; //$NON-NLS-1$
	public static final String SAME_MODULE_AND_EAR_NAME = "4"; //$NON-NLS-1$
	public static final String ARCHIVE_FILE_NAME_EMPTY_ERROR = "5"; //$NON-NLS-1$
	public static final String FILE_DOES_NOT_EXIST_ERROR = "6"; //$NON-NLS-1$
	public static final String INTERNAL_ERROR = "7"; //$NON-NLS-1$
	public static final String PROJECT_NAME_INVALID = "8"; //$NON-NLS-1$
	public static final String DESTINATION_ARCHIVE_SHOULD_END_WITH = "9"; //$NON-NLS-1$
	public static final String DESTINATION_INVALID = "10"; //$NON-NLS-1$
	public static final String IS_READ_ONLY = "11"; //$NON-NLS-1$
	public static final String RESOURCE_EXISTS_ERROR = "12"; //$NON-NLS-1$
	public static final String PROJECT_NOT_EXISTS_ERROR = "13"; //$NON-NLS-1$
	public static final String SPEC_LEVEL_NOT_FOUND = "14"; //$NON-NLS-1$
	public static final String PROJECT_NAME_EMPTY = "15"; //$NON-NLS-1$
	public static final String PROJECT_ClOSED = "31"; //$NON-NLS-1$
	public static final String PROJECT_EXISTS_AT_LOCATION_ERROR = "32"; //$NON-NLS-1$
	public static final String ERR_EMPTY_MODULE_NAME = "34"; //$NON-NLS-1$
	public static final String ERR_INVALID_CHARS = "35"; //$NON-NLS-1$ 
	public static final String DUPLICATE_COMPONENT_NAME="36";//$NON-NLS-1$ 
	public static final String MODULE_NOT_SUPPORTED="37";//$NON-NLS-1$ 
    
    public static final String MODULE_EXISTS_ERROR = "38"; //$NON-NLS-1$
	public static final String SOURCEFOLDER_EMPTY = "39"; //$NON-NLS-1$
	public static final String WEBCONTENTFOLDER_EMPTY = "40"; //$NON-NLS-1$
}

Back to the top