Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2c738163f5ea73484e12dbd64365d0968340ba94 (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
/*******************************************************************************
 * 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.command.internal.env;

import org.eclipse.osgi.util.NLS;

public final class EnvironmentMessages extends NLS {

	private static final String BUNDLE_NAME = "org.eclipse.wst.command.internal.env.Environment";//$NON-NLS-1$

	private EnvironmentMessages() {
		// Do not instantiate
	}

	public static String MSG_ERROR_PATH_NOT_ABSOLUTE;
	public static String MSG_ERROR_PATH_EMPTY;
	public static String MSG_ERROR_PATH_NOT_FOLDER;
	public static String MSG_ERROR_FOLDER_CREATION_DISABLED;
	public static String MSG_ERROR_RESOURCE_NOT_FOLDER;
	public static String MSG_WARN_FILE_OVERWRITE_DISABLED;
	public static String MSG_ERROR_FILE_CHECKOUT_DISABLED;
	public static String MSG_ERROR_RESOURCE_NOT_FILE;
	public static String MSG_ERROR_FOLDER_HAS_CHILDREN;
	public static String MSG_ERROR_IO;
	public static String MSG_ERROR_FILE_OVERWRITE_DISABLED;
	public static String MSG_ERROR_UNEXPECTED_ERROR;
	public static String MSG_ERROR_ANT_DATA_TRANSFORM;
	public static String MSG_ERROR_ANT_CALL_SETTER;
	public static String MSG_ERROR_ANT_CMD_FRAGMENT;
	public static String MSG_ERROR_ANT_SCENARIO_TYPE;
	public static String MSG_ERROR_ANT_REQUIRED_PROPERTY;
	public static String MSG_INFO_ANT__PROPERTY_DEFAULT;
	public static String LABEL_YES;
	public static String LABEL_YES_TO_ALL;
	public static String LABEL_CANCEL;

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

Back to the top