1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 06:45:43 +02:00

register adapter factory through new extension point

This commit is contained in:
David Inglis 2004-04-16 17:45:01 +00:00
parent 8329291604
commit 0edb6132e2
2 changed files with 19 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2004-04-16 David Inglis
Register our adapter factory though new extension point
* plugin.xml
2004-04-16 David Inglis
Update properties page binary catagory name.

View file

@ -40,6 +40,19 @@
<!-- =========================================================================== -->
<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. -->
<extension
point="org.eclipse.cdt.ui.CElementFilters">