KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > views > properties > IResourcePropertyConstants


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 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.views.properties;
12
13 import org.eclipse.ui.internal.views.properties.IDEPropertiesMessages;
14
15 /**
16  * This interface documents the property constants used by the resource
17  * property source.
18  */

19 public interface IResourcePropertyConstants {
20     /**
21      * The <code>IResource</code> property key for name.
22      */

23     public static final String JavaDoc P_LABEL_RES = IDEPropertiesMessages.IResourcePropertyConstants_name;
24
25     /**
26      * The <code>IResource</code> property key for path.
27      */

28     public static final String JavaDoc P_PATH_RES = "org.eclipse.ui.path"; //$NON-NLS-1$
29

30     /**
31      * The <code>IResource</code> property key for display path.
32      */

33     public static final String JavaDoc P_DISPLAYPATH_RES = IDEPropertiesMessages.IResourcePropertyConstants_path;
34
35     /**
36      * The <code>IResource</code> property key for read-only.
37      */

38     public static final String JavaDoc P_EDITABLE_RES = "org.eclipse.ui.editable"; //$NON-NLS-1$
39

40     /**
41      * The <code>IResource</code> property key for display read-only.
42      */

43     public static final String JavaDoc P_DISPLAYEDITABLE_RES = IDEPropertiesMessages.IResourcePropertyConstants_editable;
44
45     /**
46      * The <code>IResource</code> property key for read-only.
47      */

48     public static final String JavaDoc P_DERIVED_RES = "org.eclipse.ui.derived"; //$NON-NLS-1$
49

50     /**
51      * The <code>IResource</code> property key for display read-only.
52      */

53     public static final String JavaDoc P_DISPLAYDERIVED_RES = IDEPropertiesMessages.IResourcePropertyConstants_derived;
54
55     /**
56      * The <code>IResource</code> property key for location.
57      */

58     public static final String JavaDoc P_LOCATION_RES = "org.eclipse.ui.location"; //$NON-NLS-1$
59

60     /**
61      * The <code>IResource</code> property key for display location.
62      */

63     public static final String JavaDoc P_DISPLAYLOCATION_RES = IDEPropertiesMessages.IResourcePropertyConstants_location;
64
65     /**
66      * The <code>IResource</code> property key for resolved location.
67      */

68     public static final String JavaDoc P_RESOLVED_LOCATION_RES = "org.eclipse.ui.resolvedLocation"; //$NON-NLS-1$,
69

70     /**
71      * The <code>IResource</code> property key for display resolved location.
72      */

73     public static final String JavaDoc P_DISPLAYRESOLVED_LOCATION_RES = IDEPropertiesMessages.IResourcePropertyConstants_resolvedLocation;
74
75     /**
76      * The <code>IResource</code> property key for linked.
77      */

78     public static final String JavaDoc P_LINKED_RES = "org.eclipse.ui.linked"; //$NON-NLS-1$,
79

80     /**
81      * The <code>IResource</code> property key for display linked.
82      */

83     public static final String JavaDoc P_DISPLAYLINKED_RES = IDEPropertiesMessages.IResourcePropertyConstants_linked;
84
85     /**
86      * The <code>IResource</code> category for the base values
87      */

88     public static final String JavaDoc P_FILE_SYSTEM_CATEGORY = IDEPropertiesMessages.IResourcePropertyConstants_info;
89
90     /**
91      * The <code>IResource</code> property key for path.
92      */

93     public static final String JavaDoc P_SIZE_RES = "org.eclipse.ui.size"; //$NON-NLS-1$
94

95     /**
96      * The <code>IResource</code> property key for displaying size
97      */

98     public static final String JavaDoc P_DISPLAY_SIZE = IDEPropertiesMessages.IResourcePropertyConstants_size;
99
100     /**
101      * The <code>IResource</code> property key for path.
102      */

103     public static final String JavaDoc P_LAST_MODIFIED_RES = "org.eclipse.ui.lastmodified"; //$NON-NLS-1$
104

105     /**
106      * The <code>IResource</code> category for last modified
107      */

108     public static final String JavaDoc P_DISPLAY_LAST_MODIFIED = IDEPropertiesMessages.IResourcePropertyConstants_lastModified;
109
110 }
111
Popular Tags