1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 23:55:26 +02:00

[cleanup] fix rse.ui.systemType --> rse.core.systemTypes docu

This commit is contained in:
Martin Oberhuber 2006-10-24 11:47:24 +00:00
parent 46b928da73
commit 12cbc6a5ef
2 changed files with 7 additions and 6 deletions

View file

@ -11,8 +11,8 @@
<body bgcolor="#ffffff">
<h1>Plugging In System Types</h1>
<p>The <samp><A href="../../reference/extension-points/org_eclipse_rse_core_systemTypes.html">org.eclipse.rse.ui.systemType</a></samp> extension point is defined in the
plugin <samp>org.eclipse.rse.ui</samp>. It enables new system types to be
<p>The <samp><A href="../../reference/extension-points/org_eclipse_rse_core_systemTypes.html">org.eclipse.rse.core.systemTypes</a></samp> extension point is defined in the
plugin <samp>org.eclipse.rse.core</samp>. It enables new system types to be
defined in the Remote System Explorer's <A href="NewConnection.gif">New
Connection wizard</A>, such that users can define connections to systems of that type. For example,
you might define a new system type of "Solaris" or "RedHat" or some other specific type

View file

@ -175,12 +175,13 @@ If not specified, a default icon will be used by RSE.
The following is an example of the extension point schema:
&lt;p&gt;
&lt;pre&gt;
&lt;extension point=&quot;org.eclipse.rse.ui.systemTypes&quot;&gt;
&lt;extension point=&quot;org.eclipse.rse.core.systemTypes&quot;&gt;
&lt;systemType id=&quot;com.acme.systemtype.Solaris&quot;
name=&quot;Solaris&quot;
&lt;property name=&quot;icon&quot; value=&quot;icons/solaris.gif&quot;/&gt;
&lt;property name=&quot;iconLive&quot; value=&quot;icons/solarisLive.gif&quot;/&gt;
&lt;/systemType&gt;
description=&quot;Connects to Solaris systems.&quot;
icon=&quot;icons/solaris.gif&quot;
iconLive=&quot;icons/solarisLive.gif&quot;&gt;
&lt;/systemType&gt;
&lt;/extension&gt;
&lt;/pre&gt;
&lt;/p&gt;