Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 794b532827d054fd59ce704dc4180e58fe746517 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.eclipse.jst.j2ee.internal.archive;

import org.eclipse.osgi.util.NLS;

public class ArchiveMessages extends NLS {

	public static final String BUNDLE_NAME = "org.eclipse.jst.j2ee.internal.archive.messages"; //$NON-NLS-1$
	public static String ComponentArchiveSaveAdapter_Importing_0_;
	public static String ConnectorComponentNestedJARArchiveLoadAdapter_Unable_to_get_contents_from_0_mes_;
	public static String ComponentLoadStrategyImpl_Opener_of_Archive_did_not_close_it_;

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

}

Back to the top