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 Support

Identifier:
org.eclipse.ui.ide.filesystemSupport

Since:
3.2

Description:
filesystemSupport supplies IDE contributions to support filesystems contributed using the org.eclipse.core.filesystem.filesystems extension point.

Configuration Markup:

<!ELEMENT extension ( filesystemContributor*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED

>


<!ELEMENT filesystemContributor EMPTY>

<!ATTLIST filesystemContributor

label  CDATA #REQUIRED

class  CDATA #REQUIRED

scheme IDREF #REQUIRED

>

  • label - The label is the human readable label for this file system.
  • class - class is the org.eclipse.ui.ide.fileSystem.FileSystemContributor used to handle browsing and validation of an org.eclipse.core.filesystem.IFileSystem.
  • scheme - The scheme is the scheme of a org.eclipse.core.filesystems.filesystem this contribution corresponds to.

Examples:


 <extension
         point=
"org.eclipse.ui.ide.filesystemSupport"
>
      <filesystemContributor       
        class=
"myFileSystemContributor"

            label=
"My file system"

            scheme=
"myFilesystem "
/>
   </extension>
   
   

The example above has a FileSystemContributor that maps to a org.eclipse.core.filesystems.filesystem that it is provding a user interface for.

Supplied Implementation:
There are no filesystemSupports contributed by default. There is an internal implementation that supports the IResource that is backed by the file system.


Copyright (c) 2006 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