1 /*******************************************************************************
2  * Copyright (c) 2000, 2015 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.ui.internal.views.properties.tabbed.l10n;
15 
16 import org.eclipse.osgi.util.NLS;
17 
18 /**
19  * Message Bundle class for the tabbed properties view plug-in.
20  *
21  * @author Anthony Hunter
22  *
23  */
24 public final class TabbedPropertyMessages
25 	extends NLS {
26 
27 	private static final String BUNDLE_NAME = "org.eclipse.ui.internal.views.properties.tabbed.l10n.TabbedPropertyMessages";//$NON-NLS-1$
28 
29 	/**
30 	 * Constructor for TabbedPropertyMessages.
31 	 */
TabbedPropertyMessages()32 	private TabbedPropertyMessages() {
33 		// private constructor
34 	}
35 
36 	/**
37 	 * Message when a property section extension is in error.
38 	 */
39 	public static String SectionDescriptor_Section_error;
40 
41 	/**
42 	 * Message when a property section extension causes a class not found exception.
43 	 */
44 	public static String SectionDescriptor_class_not_found_error;
45 
46 	/**
47 	 * Message when a property tab extension is in error.
48 	 */
49 	public static String TabDescriptor_Tab_error;
50 
51 	/**
52 	 * Message when a property tab extension has an unknown category.
53 	 */
54 	public static String TabDescriptor_Tab_unknown_category;
55 
56 	/**
57 	 * Message when a non existing tab is found in a property section extension.
58 	 */
59 	public static String TabbedPropertyRegistry_Non_existing_tab;
60 
61 	/**
62 	 * Message when a property contributor extension is in error.
63 	 */
64 	public static String TabbedPropertyRegistry_contributor_error;
65 
66 	/**
67 	 * No properties available message.
68 	 */
69 	public static String TabbedPropertyList_properties_not_available;
70 
71 	static {
NLS.initializeMessages(BUNDLE_NAME, TabbedPropertyMessages.class)72 		NLS.initializeMessages(BUNDLE_NAME, TabbedPropertyMessages.class);
73 	}
74 }