Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 751119b082eaeed18934181ed4ebc9da10951336 (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
/*******************************************************************************
 * Copyright (c) 2004, 2011 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.osgi.internal.baseadaptor;

import org.eclipse.osgi.util.NLS;

/**
 * Commom framework adaptor messages.
 * <p>
 * Clients may not extend this class
 * </p>
 * @since 3.1
 */
public class AdaptorMsg extends NLS {

	public static String ADAPTER_FILEEXIST_EXCEPTION;
	public static String ADAPTOR_DIRECTORY_CREATE_EXCEPTION;
	public static String ADAPTOR_DIRECTORY_EXCEPTION;
	public static String ADAPTOR_EXTENSION_IMPORT_ERROR;
	public static String ADAPTOR_EXTENSION_NATIVECODE_ERROR;
	public static String ADAPTOR_EXTENSION_REQUIRE_ERROR;
	public static String ADAPTOR_STORAGE_EXCEPTION;
	public static String ADAPTOR_STORAGE_INIT_FAILED_MSG;
	public static String ADAPTOR_STORAGE_INIT_FAILED_TITLE;
	public static String ADAPTOR_URL_CREATE_EXCEPTION;

	public static String BUNDLE_CLASSPATH_ENTRY_NOT_FOUND_EXCEPTION;
	public static String BUNDLE_NATIVECODE_EXCEPTION;
	public static String BUNDLE_READ_EXCEPTION;

	public static String MANIFEST_NOT_FOUND_EXCEPTION;

	public static String RESOURCE_NOT_FOUND_EXCEPTION;

	public static String SYSTEMBUNDLE_MISSING_MANIFEST;
	public static String SYSTEMBUNDLE_NOTRESOLVED;

	public static String URL_INVALID_BUNDLE_ID;
	public static String URL_NO_BUNDLE_FOUND;
	public static String URL_NO_BUNDLE_ID;

	private static final String BUNDLE_NAME = "org.eclipse.osgi.internal.baseadaptor.ExternalMessages"; //$NON-NLS-1$	

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

}

Back to the top