Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Eclipse Plug-in Developer Guide
Previous Page Home Next Page

File System Providers

Identifier:
org.eclipse.core.filesystem.filesystems

Since:
org.eclipse.core.filesystem 1.0

Description:
This extension point is used to provide implementations of the abstract file system API org.eclipse.core.filesystem.IFileSystem. File system implementations control all aspects of querying and modifying a tree of files and directories in some backing store. Each file system extension is responsible for a file system namespace identified by a particular URI scheme.

Configuration Markup:

<!ELEMENT extension ( filesystem)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED

>


<!ELEMENT filesystem ( run)>

<!ATTLIST filesystem

scheme CDATA #REQUIRED

>

  • scheme - The URI scheme of this kind of file system.

<!ELEMENT run EMPTY>

<!ATTLIST run

class CDATA #REQUIRED

>

  • class - The fully qualified name of a class that subclasses org.eclipse.core.filesystem.provider.FileSystem

Examples:
Following is an example of a file system extension that provides access to file systems using the "gopher" URI scheme.

 
   <extension id=
"gopherFS"
 name=
"Gopher File System"
 point=
"org.eclipse.core.filesystem.filesystems"
> 
       <filesystem scheme=
"gopher"
>
           <run class=
"com.xyz.fs.GopherFileSystem"
/> 
       </filesystem> 
   </extension>

If this extension was defined in a plug-in with id "com.xyz.coolplugin", the fully qualified name of this file system extension would be "com.xyz.coolplugin.gopherFS".

Supplied Implementation:
The platform provides a file system implementation for the "file" scheme.


Copyright (c) 2005 IBM Corporation and others.
All rights reserved. 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 available at https://www.eclipse.org/legal/epl-v10.html


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire