[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[News.eclipse.technology.mylar] How to make mylar integration in CNF (Common Navigator Framework)

Hi,

In pydev, the package explorer is based on CNF, but the mylar icon does not appear in it...

A simple example for a CNF-based explorer that shows the resources is below, but even without any custom handling for the menus, it does not show it...(but it does show in the 'Project Explorer' view, which is also based on CNF -- which only leaves me more intrigued about it ;-)

Any hints?

Thanks,

Fabio


---------------------- Example --------------------------------
<extension point="org.eclipse.ui.views">
<view
allowMultiple="false"
category="org.python.pydev"
class="org.eclipse.ui.navigator.CommonNavigator"
id="org.python.pydev.navigator.view2"
icon="icons/pydev_package_explorer.gif"
name="Pydev Package Explorer2"/>
</extension> <extension point="org.eclipse.ui.navigator.viewer">
<viewer viewerId="org.python.pydev.navigator.view2">
</viewer>
<viewerContentBinding viewerId="org.python.pydev.navigator.view2">
<includes>
<contentExtension pattern="org.eclipse.ui.navigator.resourceContent"/>
<contentExtension pattern="org.eclipse.ui.navigator.resources.filters.*"/> </includes>
</viewerContentBinding>
</extension>