Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [pde-dev] add more labels to the popup menu on the text editor

Yea. I extended “popupMenus” to  extension point.
I wrote that plug-in program as follows.


<extension
         point="org.eclipse.ui.popupMenus">
<viewerContribution
            targetID=" ……………………………………………………… "
            id="com.xyz.C1">
         <action
               label="&amp;wsdl"
               style="toggle"
               icon="icons/sample.gif"
               helpContextId="com.xyz.show_action_context"
               class=""
               menubarPath="additions"
               id="">
         </action>
      </viewerContribution>
   </extension>

But couldn’t find the targetID for the area of editor as
“org.eclipse.ui.views.ResourceNavigator” for targetID for navigator.

                                       Thank you very much.




Back to the top