KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > views > properties > PropertiesMessages


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

10 package org.eclipse.ui.internal.views.properties;
11
12 import org.eclipse.osgi.util.NLS;
13
14 public class PropertiesMessages extends NLS {
15     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.ui.internal.views.properties.messages";//$NON-NLS-1$
16

17     // package: org.eclipse.ui.views.properties
18

19     // ==============================================================================
20
// Properties View
21
// ==============================================================================
22

23     public static String JavaDoc Categories_text;
24     public static String JavaDoc Categories_toolTip;
25
26     public static String JavaDoc CopyProperty_text;
27
28     public static String JavaDoc Defaults_text;
29     public static String JavaDoc Defaults_toolTip;
30
31     public static String JavaDoc Filter_text;
32     public static String JavaDoc Filter_toolTip;
33
34     public static String JavaDoc PropertyViewer_property;
35     public static String JavaDoc PropertyViewer_value;
36     public static String JavaDoc PropertyViewer_misc;
37
38     public static String JavaDoc CopyToClipboardProblemDialog_title;
39     public static String JavaDoc CopyToClipboardProblemDialog_message;
40
41     static {
42         // load message values from bundle file
43
NLS.initializeMessages(BUNDLE_NAME, PropertiesMessages.class);
44     }
45 }
Popular Tags