KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > views > properties > tabbed > l10n > TabbedPropertyMessages


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.internal.views.properties.tabbed.l10n;
12
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16  * Message Bundle class for the tabbed properties view plug-in.
17  *
18  * @author Anthony Hunter
19  *
20  */

21 public final class TabbedPropertyMessages
22     extends NLS {
23
24     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.ui.internal.views.properties.tabbed.l10n.TabbedPropertyMessages";//$NON-NLS-1$
25

26     /**
27      * Constructor for TabbedPropertyMessages.
28      */

29     private TabbedPropertyMessages() {
30         // private constructor
31
}
32
33     /**
34      * Message when a property section extension is in error.
35      */

36     public static String JavaDoc SectionDescriptor_Section_error;
37
38     /**
39      * Message when a property tab extension is in error.
40      */

41     public static String JavaDoc TabDescriptor_Tab_error;
42
43     /**
44      * Message when a non existing tab is found in a property section extension.
45      */

46     public static String JavaDoc TabbedPropertyRegistry_Non_existing_tab;
47
48     /**
49      * Message when a property contributor extension is in error.
50      */

51     public static String JavaDoc TabbedPropertyRegistry_contributor_error;
52
53     /**
54      * No properties available message.
55      */

56     public static String JavaDoc TabbedPropertyList_properties_not_available;
57
58     static {
59         NLS.initializeMessages(BUNDLE_NAME, TabbedPropertyMessages.class);
60     }
61 }
Popular Tags