blob: 46113a04eeb6c14fd8c9c49e4b1a6daee81ec571 [file] [log] [blame]
package org.eclipse.ui.views.properties;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* This interface documents the property constants used by the resource
* property source.
*/
public interface IResourcePropertyConstants {
/**
* The <code>IResource</code> property key for name.
*/
public static final String P_LABEL_RES = PropertiesMessages.getString("IResourcePropertyConstants.name"); //$NON-NLS-1$
/**
* The <code>IResource</code> property key for path.
*/
public static final String P_PATH_RES = "org.eclipse.ui.path"; //$NON-NLS-1$
/**
* The <code>IResource</code> property key for display path.
*/
public static final String P_DISPLAYPATH_RES = PropertiesMessages.getString("IResourcePropertyConstants.path"); //$NON-NLS-1$
/**
* The <code>IResource</code> property key for read-only.
*/
public static final String P_EDITABLE_RES = "org.eclipse.ui.editable"; //$NON-NLS-1$
/**
* The <code>IResource</code> property key for display read-only.
*/
public static final String P_DISPLAYEDITABLE_RES = PropertiesMessages.getString("IResourcePropertyConstants.editable"); //$NON-NLS-1$
/**
* The <code>IResource</code> category for the base values
*/
public static final String P_FILE_SYSTEM_CATEGORY = PropertiesMessages.getString("IResourcePropertyConstants.info"); //$NON-NLS-1$
/**
* The <code>IResource</code> property key for path.
*/
public static final String P_SIZE_RES = "org.eclipse.ui.size"; //$NON-NLS-1$
/**
* The <code>IResource</code> property key for displaying size
*/
public static final String P_DISPLAY_SIZE = PropertiesMessages.getString("IResourcePropertyConstants.size"); //$NON-NLS-1$
/**
* The <code>IResource</code> property key for path.
*/
public static final String P_LAST_MODIFIED_RES = "org.eclipse.ui.lastmodified"; //$NON-NLS-1$
/**
* The <code>IResource</code> category for last modified
*/
public static final String P_DISPLAY_LAST_MODIFIED = PropertiesMessages.getString("IResourcePropertyConstants.lastModified"); //$NON-NLS-1$
}