1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-09 18:15:23 +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> </documentation>
</annotation> </annotation>
</attribute> </attribute>
<attribute name="id" type="string"> <attribute name="id" type="string" use="required">
<annotation> <annotation>
<documentation> <documentation>
@ -54,10 +54,10 @@
</documentation> </documentation>
</annotation> </annotation>
<complexType> <complexType>
<attribute name="systemType" type="string" use="required"> <attribute name="systemType" type="string">
<annotation> <annotation>
<documentation> <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> </documentation>
</annotation> </annotation>
</attribute> </attribute>
@ -83,11 +83,11 @@
&lt;p&gt; &lt;p&gt;
&lt;pre&gt; &lt;pre&gt;
&lt;extension point=&quot;org.eclipse.rse.ui.newConnectionWizardDelegates&quot;&gt; &lt;extension point=&quot;org.eclipse.rse.ui.newConnectionWizardDelegates&quot;&gt;
&lt;newConnectionWizardDelegate &lt;newConnectionWizardDelegate
class=&quot;com.abc.SerialConnectionWizardDelegate&quot; class=&quot;com.abc.SerialConnectionWizardDelegate&quot;
systemType=&quot;Embedded-Linux-Serial&quot;/&gt; systemType=&quot;Embedded-Linux-Serial&quot;/&gt;
&lt;/extension&gt; &lt;/extension&gt;
&lt;/pre&gt; &lt;/pre&gt;
&lt;/p&gt; &lt;/p&gt;
</documentation> </documentation>