blob: 5a447549815e8da8e45a791e1d7d91e57a48fd95 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2021 Avaloq.
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Rubén Porras Campo (Avaloq) - Bug 576425 - Support Remote Files
*******************************************************************************/
package org.eclipse.lsp4e.test;
import java.net.URI;
import org.eclipse.core.filesystem.IFileStore;
import org.eclipse.core.filesystem.provider.FileSystem;
/**
* A file system to test custom filesystems
*
*/
public class OtherFileSystem extends FileSystem {
@Override
public IFileStore getStore(URI uri) {
return new OtherFileStore(uri);
}
}