1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

[api] Needs possibility to register newWizardConnectionDelegate with dynamically contributed system types

This commit is contained in:
Uwe Stieber 2007-02-12 12:55:38 +00:00
parent 2393efadd9
commit 4614f392bb

View file

@ -27,7 +27,7 @@
</documentation>
</annotation>
</attribute>
<attribute name="id" type="string">
<attribute name="id" type="string" use="required">
<annotation>
<documentation>
@ -54,10 +54,10 @@
</documentation>
</annotation>
<complexType>
<attribute name="systemType" type="string" use="required">
<attribute name="systemType" type="string">
<annotation>
<documentation>
The system type ID.
The system type ID. If not specified, all registered system types will be checked if any of them accepts this contributed new connection wizard delegate.
</documentation>
</annotation>
</attribute>
@ -83,11 +83,11 @@
&lt;p&gt;
&lt;pre&gt;
&lt;extension point=&quot;org.eclipse.rse.ui.newConnectionWizardDelegates&quot;&gt;
&lt;newConnectionWizardDelegate
class=&quot;com.abc.SerialConnectionWizardDelegate&quot;
systemType=&quot;Embedded-Linux-Serial&quot;/&gt;
&lt;/extension&gt;
&lt;extension point=&quot;org.eclipse.rse.ui.newConnectionWizardDelegates&quot;&gt;
&lt;newConnectionWizardDelegate
class=&quot;com.abc.SerialConnectionWizardDelegate&quot;
systemType=&quot;Embedded-Linux-Serial&quot;/&gt;
&lt;/extension&gt;
&lt;/pre&gt;
&lt;/p&gt;
</documentation>