Easy way to add a context action to Eclipse - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T03:49:30Zhttp://stackoverflow.com/feeds/question/268770http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/268770/easy-way-to-add-a-context-action-to-eclipse2Easy way to add a context action to EclipsePaulo Guedes2008-11-06T13:55:54Z2008-11-06T14:14:04Z
<p>I'm trying to add a very simple action to the context menu of Eclipse: clicking with right button over a folder object, this action should call an external tool (configured in the "External Tools") using the path of the folder as the only parameter.</p>
<p>I've found a <a href="http://www.eclipse.org/articles/article.php?file=Article-action-contribution/index.html" rel="nofollow">tutorial on how to add a context menu</a>, but it's more complex than what I need -- I don't really want to create a plugin, I don't even want to create classes to do what I want. My only purpose is to call an external tool.</p>
<p>How can I do it?</p>
http://stackoverflow.com/questions/268770/easy-way-to-add-a-context-action-to-eclipse/268813#2688132Answer by Daan for Easy way to add a context action to EclipseDaan2008-11-06T14:14:04Z2008-11-06T14:14:04Z<p>If you want to extend Eclipse with functionality such as editing context menu's, the only way to go is by writing a plug-in. However, this can be very light-weight and targeted to your needs, so the tutorial you found might be a good way to do it. </p>