From 12cbc6a5efb3b6b2b84187e58f15aa0f6a2ec205 Mon Sep 17 00:00:00 2001 From: Martin Oberhuber < martin.oberhuber@windriver.com> Date: Tue, 24 Oct 2006 11:47:24 +0000 Subject: [PATCH] [cleanup] fix rse.ui.systemType --> rse.core.systemTypes docu --- .../org.eclipse.rse.doc.isv/guide/plugin/systemtype.html | 4 ++-- rse/plugins/org.eclipse.rse.core/schema/systemTypes.exsd | 9 +++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/rse/doc/org.eclipse.rse.doc.isv/guide/plugin/systemtype.html b/rse/doc/org.eclipse.rse.doc.isv/guide/plugin/systemtype.html index a925b8190d5..a19febddc30 100755 --- a/rse/doc/org.eclipse.rse.doc.isv/guide/plugin/systemtype.html +++ b/rse/doc/org.eclipse.rse.doc.isv/guide/plugin/systemtype.html @@ -11,8 +11,8 @@

Plugging In System Types

-

The org.eclipse.rse.ui.systemType extension point is defined in the -plugin org.eclipse.rse.ui. It enables new system types to be +

The org.eclipse.rse.core.systemTypes extension point is defined in the +plugin org.eclipse.rse.core. It enables new system types to be defined in the Remote System Explorer's New Connection wizard, 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 diff --git a/rse/plugins/org.eclipse.rse.core/schema/systemTypes.exsd b/rse/plugins/org.eclipse.rse.core/schema/systemTypes.exsd index 10535132bfa..87b4fa42d55 100644 --- a/rse/plugins/org.eclipse.rse.core/schema/systemTypes.exsd +++ b/rse/plugins/org.eclipse.rse.core/schema/systemTypes.exsd @@ -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: <p> <pre> - <extension point="org.eclipse.rse.ui.systemTypes"> + <extension point="org.eclipse.rse.core.systemTypes"> <systemType id="com.acme.systemtype.Solaris" name="Solaris" - <property name="icon" value="icons/solaris.gif"/> - <property name="iconLive" value="icons/solarisLive.gif"/> - </systemType> + description="Connects to Solaris systems." + icon="icons/solaris.gif" + iconLive="icons/solarisLive.gif"> + </systemType> </extension> </pre> </p>