[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.newcomer] Re: armEvent for a menuItem

You can use the org.eclipse.ui.menus to achieve this.

ex :

<extension point="org.eclipse.ui.menus">
      <menuContribution locationURI="menu:file?query=mru">
         <menu label="myLabel">
            <dynamic
                  class="com.example.MyDynamicItem"
                  id="com.example.dynamic">
            </dynamic>
         </menu>
      </menuContribution>
</extension>

where MyDynamicItem is a class extending CompoundContributionItem (getContributionsItem method  provide the dynamic elements for your menu)

Regards,

Benoit.