Mount Path Mappers

org.eclipse.rse.ui.mountPathMappers

This extension point is used to allow the delegation of temp file mappings to vendors where needed.

<!ELEMENT extension (mountPathMapper*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>

(no description available)



<!ELEMENT mountPathMapper EMPTY>

<!ATTLIST mountPathMapper

id    CDATA #REQUIRED

name  CDATA #REQUIRED

class CDATA #REQUIRED>

(no description available)



The following is an example of this extension point's usage:

   

<extension point=

"org.eclipse.rse.ui.mountPathMappers"

>

<mountPathMapper id=

"org.eclipse.rse.files.ui.resources.defaultMountPathMapper"

name=

"Default Mount Path Mapper"

class=

"org.eclipse.rse.files.ui.resources.DefaultMountPathMapper"

>

</mountPathMapper>

</extension>

Plug-ins that want to extend this extension point must implement org.eclipse.rse.files.ui.resources.ISystemMountPathMapper interface.

The Remote System Explorer in org.eclipse.rse.files.ui provides a default implementation of this extension point.