System Editor Profile
Identifier
com.ibm.etools.systems.core.editorprofileDescription
With this extension point, plugin providers can register a new editor profile to the Remote System Explorer.Markup
<!ELEMENT extension EMPTY>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED
>
<!ELEMENT profile EMPTY>
<!ATTLIST profile
type CDATA #REQUIRED
class CDATA #REQUIRED
>
- type - A type for this editor profile.
- class - A class that implements com.ibm.etools.systems.core.edit.ISystemTextEditorProfile.
Example
Example of using this extension point:
<extension point="com.ibm.etools.systems.core.editorprofile>
<profile type="mytype" class="com.mypackage.MyClass"
</extension>
API Information
A class that implements com.ibm.etools.systems.core.edit.ISystemTextEditorProfile.Supplied Implementation
All IBM-supplied editor profiles are implemented via use of this extension
point. See
the plugin.xml files for plugins com.ibm.etools.systems.core, and com.ibm.etools.iseries.core
for examples.
(C) Copyright IBM Corp. 2003 All Rights Reserved.