Pregunta

I m testing a eclipse plugin using swt bot.but I cant find a way to check the icon of a file in the tree in project explorer.How can this be done

please help

¿Fue útil?

Solución

What about using this ?

 tree.display.asyncExec(new Runnable() {

        @Override
        public void run() {
            Image i = treeItem.widget.getImage();   
        }
    });
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top