Skip to main content
summaryrefslogtreecommitdiffstats
blob: 949692b7caf72d3f963a257666900508a9f83225 (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
/*******************************************************************************
 * Copyright (c) 2005, 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
 *******************************************************************************/
package org.eclipse.jst.server.ui.internal;

import org.eclipse.osgi.util.NLS;
/**
 * Translated messages.
 */
public class Messages extends NLS {
	public static String runtimeTypeTitle;
	public static String runtimeTypeDescription;
	public static String runtimeTypeName;
	public static String runtimeTypeLocation;
	public static String runtimeTypeSelectLocation;
	public static String runtimeTypeJRE;
	public static String browse;
	public static String runtimeTypeInstalledJREs;
	public static String runtimeTypeDefaultJRE;
	public static String errorInternalCactus;

	public static String classpathContainer;
	public static String classpathContainerDescription;
	public static String classpathContainerRuntimeList;

	public static String LaunchTestAction_message_selectConfiguration;
	public static String LaunchTestAction_message_selectDebugConfiguration;
	public static String LaunchTestAction_message_selectRunConfiguration;

	public static String NewServletTestCaseWizard_WindowTitle;
	public static String NewServletTestCaseWizard_ErrorMessageTitleMissingLibrary;
	public static String NewServletTestCaseWizard_ErrorMessageMissingLibrary;
	public static String NewServletTestCaseWizard_ErrorTitleNew;
	public static String NewServletTestCaseWizard_ErrorTitleCreateOfElementFailed;
	public static String NewServletTestCaseWizard_ErrorMessageSeeErrorLog;
    public static String NewServletTestCaseWizard_WarningMessageSelectAWebProject;
    public static String NewServletTestCaseWizard_WarningTitleWebProjectRequired;
    public static String NewServletTestCaseWizard_WarningMessageSuperclassIsEmpty;
    public static String NewServletTestCaseWizard_WarningMessageSuperclassDoesNotExist;
    public static String NewServletTestCaseWizard_WarningMessageSuperclassIsInterface;
    public static String NewServletTestCaseWizard_WarningMessageSuperclassNotServletTestCase;
    public static String CactusAddLibrariesProposal_ErrorMessageCouldntInstallLibraries;
    public static String CactusAddLibrariesProposal_ErrorMessageCactusBundleNotFound;
    public static String CactusAddLibrariesProposal_ErrorMessageDestDirNotFound;
    public static String CactusAddLibrariesProposal_ErrorMessageInstallationOfLibsFailed;
    public static String CactusAddLibrariesProposal_ErrorMessageInstallDirNotFound;
    public static String CactusAddLibrariesProposal_AdditionalInfoAddCactusLibraries;
    public static String CactusAddLibrariesProposal_DisplayStringAddCactusLibs;
	static {
		NLS.initializeMessages(JavaServerUIPlugin.PLUGIN_ID + ".internal.Messages", Messages.class);
	}
}

Back to the top