Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6c1ed9f7f7a21a8ebddf607be90773b892c8d4ab (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
/*******************************************************************************
 * Copyright (c) 2004, 2011 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.osgi.internal.resolver;

import org.eclipse.osgi.util.NLS;

public class StateMsg extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.osgi.internal.resolver.StateMessages"; //$NON-NLS-1$

	public static String BUNDLE_NOT_IN_STATE;
	public static String BUNDLE_IN_OTHER_STATE;
	public static String BUNDLE_PENDING_REMOVE_STATE;

	public static String HEADER_REQUIRED;
	public static String HEADER_PACKAGE_DUPLICATES;
	public static String HEADER_PACKAGE_JAVA;
	public static String HEADER_VERSION_ERROR;
	public static String HEADER_EXPORT_ATTR_ERROR;
	public static String HEADER_DIRECTIVE_DUPLICATES;
	public static String HEADER_ATTRIBUTE_DUPLICATES;
	public static String HEADER_EXTENSION_ERROR;

	public static String RES_ERROR_DISABLEDBUNDLE;
	public static String RES_ERROR_MISSING_PERMISSION;
	public static String RES_ERROR_MISSING_CONSTRAINT;
	public static String RES_ERROR_FRAGMENT_CONFLICT;
	public static String RES_ERROR_USES_CONFLICT;
	public static String RES_ERROR_SINGLETON_CONFLICT;
	public static String RES_ERROR_PLATFORM_FILTER;
	public static String RES_ERROR_NO_NATIVECODE_MATCH;
	public static String RES_ERROR_NATIVECODE_PATH_INVALID;
	public static String RES_ERROR_UNKNOWN;

	static {
		// initialize resource bundles
		NLS.initializeMessages(BUNDLE_NAME, StateMsg.class);
	}
}

Back to the top