mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-15 04:55:22 +02:00
[210109] no need to declare IFileService constants in AbstractFileService
This commit is contained in:
parent
8c7ca4bd78
commit
1fce7beccf
1 changed files with 1 additions and 9 deletions
|
@ -17,6 +17,7 @@
|
||||||
* Xuan Chen (IBM) - [160775] [api] rename (at least within a zip) blocks UI thread
|
* Xuan Chen (IBM) - [160775] [api] rename (at least within a zip) blocks UI thread
|
||||||
* David McKnight (IBM) - [209552] API changes to use multiple and getting rid of deprecated
|
* David McKnight (IBM) - [209552] API changes to use multiple and getting rid of deprecated
|
||||||
* David McKnight (IBM) - [210109] store constants in IFileService rather than IFileServiceConstants
|
* David McKnight (IBM) - [210109] store constants in IFileService rather than IFileServiceConstants
|
||||||
|
* Martin Oberhuber (Wind River) - [210109] no need to declare IFileService constants in AbstractFileService
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.services.files;
|
package org.eclipse.rse.services.files;
|
||||||
|
@ -35,15 +36,6 @@ import org.eclipse.rse.services.clientserver.messages.SystemMessageException;
|
||||||
|
|
||||||
public abstract class AbstractFileService implements IFileService
|
public abstract class AbstractFileService implements IFileService
|
||||||
{
|
{
|
||||||
/* Bring constants for {@link #internalFetch(String, String, int, IProgressMonitor)}
|
|
||||||
* into local namespace for backward compatibility with 2.x service implementations
|
|
||||||
*/
|
|
||||||
/** @deprecated use {@link IFileService#FILE_TYPE_FILES_AND_FOLDERS} directly */
|
|
||||||
public static final int FILE_TYPE_FILES_AND_FOLDERS = IFileService.FILE_TYPE_FILES_AND_FOLDERS;
|
|
||||||
/** @deprecated use {@link IFileService#FILE_TYPE_FILES} directly */
|
|
||||||
public static final int FILE_TYPE_FILES = IFileService.FILE_TYPE_FILES;
|
|
||||||
/** @deprecated use {@link IFileService#FILE_TYPE_FOLDERS} directly */
|
|
||||||
public static final int FILE_TYPE_FOLDERS = IFileService.FILE_TYPE_FOLDERS;
|
|
||||||
|
|
||||||
protected abstract IHostFile[] internalFetch(String parentPath, String fileFilter, int fileType, IProgressMonitor monitor) throws SystemMessageException;
|
protected abstract IHostFile[] internalFetch(String parentPath, String fileFilter, int fileType, IProgressMonitor monitor) throws SystemMessageException;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue