1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 04:55:22 +02:00

[230298][api][breaking] ISystemPropertyConstants should not extend IBasicPropertyConstants

This commit is contained in:
Martin Oberhuber 2008-05-05 21:16:10 +00:00
parent 95da6330d1
commit 6535099c75

View file

@ -12,18 +12,18 @@
* Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley. * Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
* *
* Contributors: * Contributors:
* David McKnight (IBM) - [209593] [api] add support for "file permissions" and "owner" properties for unix files * David McKnight (IBM) - [209593] [api] add support for "file permissions" and "owner" properties for unix files
* Martin Oberhuber (Wind River) - [230298][api][breaking] ISystemPropertyConstants should not extend IBasicPropertyConstants
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.ui.view; package org.eclipse.rse.ui.view;
import org.eclipse.jface.viewers.IBasicPropertyConstants;
/** /**
* Constants that are the key values used to identify properties that populate the * Constants that are the key values used to identify properties that populate the
* Property Sheet viewer. * Property Sheet viewer.
*/ */
public interface ISystemPropertyConstants extends IBasicPropertyConstants public interface ISystemPropertyConstants
{ {
public static final String P_PREFIX = org.eclipse.rse.ui.ISystemIconConstants.PREFIX; public static final String P_PREFIX = "org.eclipse.rse.ui."; //$NON-NLS-1$
// GENERIC / COMMON // GENERIC / COMMON
public static final String P_TYPE = P_PREFIX+"type"; //$NON-NLS-1$ public static final String P_TYPE = P_PREFIX+"type"; //$NON-NLS-1$
public static final String P_NEWNAME = P_PREFIX+"newName"; //$NON-NLS-1$ public static final String P_NEWNAME = P_PREFIX+"newName"; //$NON-NLS-1$