1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 23:25:26 +02:00

[168596] FileServiceSubSystem.isCaseSensitive()

This commit is contained in:
Martin Oberhuber 2006-12-20 19:05:33 +00:00
parent f896c63eb2
commit 3382c209e6
2 changed files with 12 additions and 5 deletions

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.rse.subsystems.files.core
Bundle-Version: 1.0.1.qualifier
Bundle-Version: 1.0.2.qualifier
Bundle-Activator: org.eclipse.rse.subsystems.files.core.Activator
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,

View file

@ -13,6 +13,7 @@
* Contributors:
* Martin Oberhuber (Wind River) - Fix 158534 - NPE in upload/download after conflict
* Martin Oberhuber (Wind River) - Fix 162962 - recursive removeCachedRemoteFile()
* Martin Oberhuber (Wind River) - [168596] FileServiceSubSystem.isCaseSensitive()
********************************************************************************/
package org.eclipse.rse.subsystems.files.core.servicesubsystem;
@ -23,7 +24,6 @@ import java.io.InputStream;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.core.model.IHost;
import org.eclipse.rse.core.subsystems.IConnectorService;
import org.eclipse.rse.core.subsystems.IServiceSubSystemConfiguration;
@ -77,6 +77,13 @@ public final class FileServiceSubSystem extends RemoteFileSubSystem implements I
}
/* (non-Javadoc)
* @see org.eclipse.rse.subsystems.files.core.subsystems.RemoteFileSubSystem#isCaseSensitive()
*/
public boolean isCaseSensitive() {
return getFileService().isCaseSensitive();
}
public IRemoteFileContext getContextFor(IRemoteFile file)
{
return getContext(file);
@ -426,8 +433,8 @@ public final class FileServiceSubSystem extends RemoteFileSubSystem implements I
/**
* Get the remote file and save it locally. The file is saved in the encoding
* specified.
* @param source remote file that represents the file to be obtained
* @param destination the absolute path of the local file
* @param file remote file that represents the file to be obtained
* @param localpath the absolute path of the local file
* @param encoding the encoding of the local file
* @param monitor progress monitor
*/
@ -868,5 +875,5 @@ public final class FileServiceSubSystem extends RemoteFileSubSystem implements I
getFileService().uninitService(monitor);
_userHome = null;
}
}