mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 14:55:41 +02:00
register adapter factory through new extension point
This commit is contained in:
parent
8329291604
commit
0edb6132e2
2 changed files with 19 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2004-04-16 David Inglis
|
||||||
|
|
||||||
|
Register our adapter factory though new extension point
|
||||||
|
|
||||||
|
* plugin.xml
|
||||||
|
|
||||||
2004-04-16 David Inglis
|
2004-04-16 David Inglis
|
||||||
|
|
||||||
Update properties page binary catagory name.
|
Update properties page binary catagory name.
|
||||||
|
|
|
@ -40,6 +40,19 @@
|
||||||
<!-- =========================================================================== -->
|
<!-- =========================================================================== -->
|
||||||
<extension-point id="textHovers" name="%textHoversName"/>
|
<extension-point id="textHovers" name="%textHoversName"/>
|
||||||
|
|
||||||
|
<extension point="org.eclipse.core.runtime.adapters">
|
||||||
|
<factory
|
||||||
|
class="org.eclipse.cdt.internal.ui.CElementAdapterFactory"
|
||||||
|
adaptableType="org.eclipse.cdt.core.model.ICElement">
|
||||||
|
|
||||||
|
<adapter type="org.eclipse.core.resources.IResource"/>
|
||||||
|
<adapter type="org.eclipse.core.resources.IProject"/>
|
||||||
|
|
||||||
|
<adapter type="org.eclipse.ui.model.IWorkbenchAdapter"/>
|
||||||
|
<adapter type="org.eclipse.ui.views.properties.IPropertySource"/>
|
||||||
|
</factory>
|
||||||
|
</extension>
|
||||||
|
|
||||||
<!-- Implement our filters for C-View. -->
|
<!-- Implement our filters for C-View. -->
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.cdt.ui.CElementFilters">
|
point="org.eclipse.cdt.ui.CElementFilters">
|
||||||
|
|
Loading…
Add table
Reference in a new issue