Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 588a4a2cbb7010d5f067e7b6958e9521134ccc25 (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
/*******************************************************************************
 * Copyright (c) 2009, 2010 Tasktop Technologies 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:
 *     Tasktop Technologies - initial API and implementation
 *******************************************************************************/

package org.eclipse.equinox.internal.p2.discovery;

import org.eclipse.osgi.util.NLS;

/**
 * @author David Green
 */
class Messages extends NLS {

	private static final String BUNDLE_NAME = "org.eclipse.equinox.internal.p2.discovery.messages"; //$NON-NLS-1$

	public static String Catalog_bundle_references_unknown_category;

	public static String Catalog_duplicate_category_id;

	public static String Catalog_exception_disposing;

	public static String Catalog_Failed_to_discovery_all_Error;

	public static String Catalog_illegal_filter_syntax;

	public static String Catalog_Strategy_failed_Error;

	public static String Catalog_task_discovering_connectors;

	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}

	private Messages() {
	}

}

Back to the top