Mount Path Mappers
Identifier:
com.ibm.etools.systems.core.mountPathMappers
Since:
5.1.2
Description:
This extension point is used to allow the delegation of temp file mappings to vendors where needed.
Configuration Markup:
<!ELEMENT extension (mountPathMapper*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT mountPathMapper EMPTY>
<!ATTLIST mountPathMapper
id CDATA #REQUIRED
name CDATA #REQUIRED
class CDATA #REQUIRED>
- id - a unique name that will be used to identify the Mount Path Mapper.
- name - a translatable name that will be used to identify this Mount Path Mapper in the UI.
- class - a fully qualified name of the Java class that implements the com.ibm.etools.systems.core.resources.ISystemMountPathMapper interface.
Examples:
The following is an example of this extension point's usage:
<extension point=
"com.ibm.etools.systems.core.mountPathMappers"
>
<archivehandler
id=
"com.ibm.etools.systems.core.resources.defaultMountPathMapper"
name=
"Default Mount Path Mapper"
class=
"com.ibm.etools.systems.core.resources.DefaultMountPathMapper"
>
</parser>
</extension>
API Information:
Plug-ins that want to extend this extension point must implement com.ibm.etools.systems.core.resources.ISystemMountPathMapper interface.
Supplied Implementation:
The Remote Systems Explorer in com.ibm.etools.systems.core provides a default implementation of this extension point.
(C) Copyright IBM Corp. 2002, 2004. All Rights Reserved.