KickJava   Java API By Example, From Geeks To Geeks.

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


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 IDEPropertiesMessages extends NLS {
15     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.ui.internal.views.properties.ideMessages";//$NON-NLS-1$
16

17     // ==============================================================================
18
// Properties View - IDE-specific strings
19
// ==============================================================================
20

21     public static String JavaDoc PropertySource_notLocal;
22     public static String JavaDoc PropertySource_notFound;
23     public static String JavaDoc PropertySource_readOnly;
24     public static String JavaDoc PropertySource_undefinedPathVariable;
25     public static String JavaDoc PropertySource_fileNotExist;
26
27     public static String JavaDoc IResourcePropertyConstants_name;
28     public static String JavaDoc IResourcePropertyConstants_path;
29     public static String JavaDoc IResourcePropertyConstants_editable;
30     public static String JavaDoc IResourcePropertyConstants_derived;
31     public static String JavaDoc IResourcePropertyConstants_size;
32     public static String JavaDoc IResourcePropertyConstants_lastModified;
33     public static String JavaDoc IResourcePropertyConstants_info;
34     public static String JavaDoc IResourcePropertyConstants_location;
35     public static String JavaDoc IResourcePropertyConstants_resolvedLocation;
36     public static String JavaDoc IResourcePropertyConstants_linked;
37     public static String JavaDoc ResourceProperty_false;
38     public static String JavaDoc ResourceProperty_true;
39
40     static {
41         // load message values from bundle file
42
NLS.initializeMessages(BUNDLE_NAME, IDEPropertiesMessages.class);
43     }
44 }
Popular Tags