mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-15 04:55:22 +02:00
[cleanup] mark IClassifierConstants noimplement
This commit is contained in:
parent
14d33d3fea
commit
2f70d78f39
1 changed files with 18 additions and 16 deletions
|
@ -1,15 +1,15 @@
|
||||||
/********************************************************************************
|
/********************************************************************************
|
||||||
* Copyright (c) 2006, 2008 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2008 IBM Corporation. All rights reserved.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* This program and the accompanying materials are made available under the terms
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||||
*
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
* Michael Berger, David Dykstal, Phil Coulthard, Don Yantzi, Eric Simpson,
|
* Michael Berger, David Dykstal, Phil Coulthard, Don Yantzi, Eric Simpson,
|
||||||
* 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) - [247573][api] IClassifierConstants.TYPE_LINK == "link" is not in sync with actual usage of "symbolic link" in the code
|
* David McKnight (IBM) - [247573][api] IClassifierConstants.TYPE_LINK == "link" is not in sync with actual usage of "symbolic link" in the code
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
@ -18,53 +18,55 @@ package org.eclipse.rse.services.clientserver;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This interface defines some constants for classifiers.
|
* This interface defines some constants for classifiers.
|
||||||
|
*
|
||||||
|
* @noimplement This interface is not intended to be implemented by clients.
|
||||||
*/
|
*/
|
||||||
public interface IClassifierConstants {
|
public interface IClassifierConstants {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default type.
|
* Default type.
|
||||||
*/
|
*/
|
||||||
public static final String TYPE_DEFAULT = "file"; //$NON-NLS-1$
|
public static final String TYPE_DEFAULT = "file"; //$NON-NLS-1$
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Link type, "link".
|
* Link type, "link".
|
||||||
*
|
*
|
||||||
* @deprecated should use TYPE_SYMBOLIC_LINK
|
* @deprecated should use TYPE_SYMBOLIC_LINK
|
||||||
*/
|
*/
|
||||||
public static final String TYPE_LINK = "link"; //$NON-NLS-1$
|
public static final String TYPE_LINK = "link"; //$NON-NLS-1$
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Symbolic link type, "symbolic link"
|
* Symbolic link type, "symbolic link"
|
||||||
*
|
*
|
||||||
* @since 3.1
|
* @since 3.1
|
||||||
*/
|
*/
|
||||||
public static final String TYPE_SYMBOLIC_LINK = "symbolic link"; //$NON-NLS-1$
|
public static final String TYPE_SYMBOLIC_LINK = "symbolic link"; //$NON-NLS-1$
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Java executable type, "executable(java:*)".
|
* Java executable type, "executable(java:*)".
|
||||||
*/
|
*/
|
||||||
public static final String TYPE_EXECUTABLE_JAVA = "executable(java:*)"; //$NON-NLS-1$
|
public static final String TYPE_EXECUTABLE_JAVA = "executable(java:*)"; //$NON-NLS-1$
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Binary executable type, "executable(binary)".
|
* Binary executable type, "executable(binary)".
|
||||||
*/
|
*/
|
||||||
public static final String TYPE_EXECUTABLE_BINARY = "executable(binary)"; //$NON-NLS-1$
|
public static final String TYPE_EXECUTABLE_BINARY = "executable(binary)"; //$NON-NLS-1$
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Script executable type, "executable(script)".
|
* Script executable type, "executable(script)".
|
||||||
*/
|
*/
|
||||||
public static final String TYPE_EXECUTABLE_SCRIPT = "executable(script)"; //$NON-NLS-1$
|
public static final String TYPE_EXECUTABLE_SCRIPT = "executable(script)"; //$NON-NLS-1$
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Match java executable type, "*executable(java:*)*".
|
* Match java executable type, "*executable(java:*)*".
|
||||||
*/
|
*/
|
||||||
public static final String MATCH_EXECUTABLE_JAVA = "*executable(java:*)*"; //$NON-NLS-1$
|
public static final String MATCH_EXECUTABLE_JAVA = "*executable(java:*)*"; //$NON-NLS-1$
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Match binary executable type, "*executable(java:*)*".
|
* Match binary executable type, "*executable(java:*)*".
|
||||||
*/
|
*/
|
||||||
public static final String MATCH_EXECUTABLE_BINARY = "*executable(binary)*"; //$NON-NLS-1$
|
public static final String MATCH_EXECUTABLE_BINARY = "*executable(binary)*"; //$NON-NLS-1$
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Match script executable type, "*executable(java:*)*".
|
* Match script executable type, "*executable(java:*)*".
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue