I want to create a simple eclipse plugin, which does: When you right click a java project, it will show a popup menu which has a item has label "N java files found in this project", where "N" is the file count.

I have an idea that I can update the label in "selectionChanged":

public class CountAction implements IObjectActionDelegate {
    public void selectionChanged(IAction action, ISelection selection) {
        action.setText(countJavaFiles());
    }
}

But it doesn't work if I don't click that menu item, since the CountAction has not been loaded, that selectionChanged won't be invoked when you right-click on the project.

I have spent a lot of time on this, but not solved. Please help me.

link|improve this question

feedback

3 Answers

An alternative to the article suggested by @kett_chup, is to use IElementUpdater. Simply

  • your handler must implement IElementUpdater
  • the handler.updateElement((UIElement element, Map parameters) must set the wanted text using element.setText("new text") - this new text will show up in menus and toolbars
  • whenever you need/want to update the command text use ICommandService.refreshElements(String commandId, Map filter) with your particular command ID - the global command service usually is just fine

The IElementUpdater interface can also be used to change the checked state - for commands with style=toggle - as well as the icons and the tool tip.

link|improve this answer
I followed @kett_chup's answer, and it works. I'm very interested in your answer, but I don't understand how to implement it. For example, is the handler here is the MyHandler there? Are the other things still needed(CompoundContributionItem, command)? – Freewind Jul 10 '11 at 5:05
I'll try to write an example later tonight... – Tonny Madsen Jul 10 '11 at 16:11
thank you very much! – Freewind Jul 11 '11 at 10:50
feedback

This link might cover what you need - http://timezra.blogspot.com/2007/12/dynamic-labels-for-eclipse-context.html

link|improve this answer
feedback
up vote 0 down vote accepted

At last, I found a very easy way to implement this:

I don't need to change my code(the sample code in question), but I need to add a small startup class:

import org.eclipse.ui.IStartup;

public class MyStartUp implements IStartup {

    @Override
    public void earlyStartup() {
        // Initial the action
        new CountAction();
    }
}

And add following to plugin.xml:

<extension
     point="org.eclipse.ui.startup">
  <startup
        class="myplugin.MyStartUp">
  </startup>

This MyStartUp will load an instance of that action at startup, then selectionChanged will be invoked each time when I right-click the projects or files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.