Skip to main content
summaryrefslogtreecommitdiffstats
blob: 211843936ca40fec572436405aa2480d62ea0506 (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
package org.eclipse.jst.j2ee.internal.ui.preferences;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.jst.j2ee.internal.ui.preferences.messages"; //$NON-NLS-1$
	public static String EarModuleDependenciesPropertyPage_0;
	public static String EarModuleDependenciesPropertyPage_1;
	public static String EarModuleDependenciesPropertyPage_2;
	public static String EarModuleDependenciesPropertyPage_3;
	public static String EarModuleDependenciesPropertyPage_LIBDIR;
	public static String EarModuleDependenciesPropertyPage_ERROR_INVALID_LIBDIR;
	public static String EarModuleDependenciesPropertyPage_WARNING_EMPTY_LIB_DIR;
	public static String EarModuleDependencyPageProvider_0;
	public static String WebDependencyPropertyPage_0;
	public static String WebDependencyPropertyPage_1;
	public static String ChildClasspathDependencyDescription;
	public static String ClasspathDependencyFragmentTitle;
	public static String ClasspathDependencyFragmentDescription;
	
	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}

	private Messages() {
	}
}

Back to the top