01: /**********************************************************************
02: * Copyright (c) 2005 IBM Corporation and others. All rights reserved. This
03: * program and the accompanying materials are made available under the terms of
04: * the Eclipse Public License v1.0 which accompanies this distribution, and is
05: * available at http://www.eclipse.org/legal/epl-v10.html
06: *
07: * Contributors:
08: * IBM - Initial API and implementation
09: **********************************************************************/package org.eclipse.ui.internal.views.properties;
10:
11: import org.eclipse.osgi.util.NLS;
12:
13: public class IDEPropertiesMessages extends NLS {
14: private static final String BUNDLE_NAME = "org.eclipse.ui.internal.views.properties.ideMessages";//$NON-NLS-1$
15:
16: // ==============================================================================
17: // Properties View - IDE-specific strings
18: // ==============================================================================
19:
20: public static String PropertySource_notLocal;
21: public static String PropertySource_notFound;
22: public static String PropertySource_readOnly;
23: public static String PropertySource_undefinedPathVariable;
24: public static String PropertySource_fileNotExist;
25:
26: public static String IResourcePropertyConstants_name;
27: public static String IResourcePropertyConstants_path;
28: public static String IResourcePropertyConstants_editable;
29: public static String IResourcePropertyConstants_derived;
30: public static String IResourcePropertyConstants_size;
31: public static String IResourcePropertyConstants_lastModified;
32: public static String IResourcePropertyConstants_info;
33: public static String IResourcePropertyConstants_location;
34: public static String IResourcePropertyConstants_resolvedLocation;
35: public static String IResourcePropertyConstants_linked;
36: public static String ResourceProperty_false;
37: public static String ResourceProperty_true;
38:
39: static {
40: // load message values from bundle file
41: NLS
42: .initializeMessages(BUNDLE_NAME,
43: IDEPropertiesMessages.class);
44: }
45: }
|