1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 14:25:37 +02:00

[219098][api] FileServiceSubSystem should not be final

This commit is contained in:
Martin Oberhuber 2008-02-15 14:49:51 +00:00
parent 3f5b5027d7
commit 627daa59dc

View file

@ -29,6 +29,7 @@
* David McKnight (IBM) - [209704] added supportsEncodingConversion()
* David Dykstal (IBM) - [197036] pulling up subsystem switch logic
* David Dykstal (IBM) - [217556] remove service subsystem types
* Martin Oberhuber (Wind River) - [219098][api] FileServiceSubSystem should not be final
*******************************************************************************/
package org.eclipse.rse.subsystems.files.core.servicesubsystem;
@ -71,7 +72,16 @@ import org.eclipse.rse.ui.ISystemMessages;
import org.eclipse.rse.ui.RSEUIPlugin;
import org.eclipse.rse.ui.SystemBasePlugin;
public final class FileServiceSubSystem extends RemoteFileSubSystem implements IFileServiceSubSystem
/**
* Generic Subsystem implementation for remote files.
*
* Clients may instantiate this class from their subsystem configurations.
* <p>
* Extending (overriding) this class is discouraged: configuration of the subsystem
* behavior should be done by providing a custom {@link IFileService} implementation
* wherever possible.
*/
public class FileServiceSubSystem extends RemoteFileSubSystem implements IFileServiceSubSystem
{
protected ILanguageUtilityFactory _languageUtilityFactory;