Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1c4ca9faf43b4463a59d81c82683a9d244aa08d6 (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
/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation.
 *
 * 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.equinox.device;

import org.eclipse.osgi.util.NLS;

public class DeviceMsg extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.equinox.device.ExternalMessages"; //$NON-NLS-1$

	public static String DeviceManager_started;
	public static String Device_service_unregistered;
	public static String Device_noDriverFound_called;
	public static String Multiple_Driver_services_with_the_same_DRIVER_ID;
	public static String DeviceManager_Update_Wait;
	public static String Driver_service_has_no_DRIVER_ID_property;
	public static String Device_attached_by_DRIVER_ID;
	public static String Device_referred_to;
	public static String Unable_to_create_Filter_for_DeviceManager;
	public static String DeviceManager_has_thrown_an_error;
	public static String Device_noDriverFound_error;
	public static String DriverLocator_unable_to_load_driver;
	public static String DriverLocator_error_calling_findDrivers;
	public static String Unable_to_install_or_start_driver_bundle;
	public static String Unable_to_uninstall_driver_bundle;
	public static String Unable_to_uninstall_driver_bundle_number;
	public static String DriverSelector_error_during_match;
	public static String Driver_service_has_no_DRIVER_ID;
	public static String Driver_error_during_match;
	public static String Driver_error_during_attach;

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

Back to the top