1 /*******************************************************************************
2  * Copyright (c) 2004, 2011 IBM Corporation and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *     IBM Corporation - initial API and implementation
13  *******************************************************************************/
14 package org.eclipse.osgi.internal.resolver;
15 
16 import org.eclipse.osgi.util.NLS;
17 
18 public class StateMsg extends NLS {
19 	private static final String BUNDLE_NAME = "org.eclipse.osgi.internal.resolver.StateMessages"; //$NON-NLS-1$
20 
21 	public static String BUNDLE_NOT_IN_STATE;
22 	public static String BUNDLE_IN_OTHER_STATE;
23 	public static String BUNDLE_PENDING_REMOVE_STATE;
24 
25 	public static String HEADER_REQUIRED;
26 	public static String HEADER_PACKAGE_DUPLICATES;
27 	public static String HEADER_PACKAGE_JAVA;
28 	public static String HEADER_VERSION_ERROR;
29 	public static String HEADER_EXPORT_ATTR_ERROR;
30 	public static String HEADER_DIRECTIVE_DUPLICATES;
31 	public static String HEADER_ATTRIBUTE_DUPLICATES;
32 	public static String HEADER_EXTENSION_ERROR;
33 
34 	public static String RES_ERROR_DISABLEDBUNDLE;
35 	public static String RES_ERROR_MISSING_PERMISSION;
36 	public static String RES_ERROR_MISSING_CONSTRAINT;
37 	public static String RES_ERROR_FRAGMENT_CONFLICT;
38 	public static String RES_ERROR_USES_CONFLICT;
39 	public static String RES_ERROR_SINGLETON_CONFLICT;
40 	public static String RES_ERROR_PLATFORM_FILTER;
41 	public static String RES_ERROR_NO_NATIVECODE_MATCH;
42 	public static String RES_ERROR_NATIVECODE_PATH_INVALID;
43 	public static String RES_ERROR_UNKNOWN;
44 
45 	static {
46 		// initialize resource bundles
NLS.initializeMessages(BUNDLE_NAME, StateMsg.class)47 		NLS.initializeMessages(BUNDLE_NAME, StateMsg.class);
48 	}
49 }