How to get the parent module of project. Here is my code works fine in Eclipse PDE. But when I test the plugin(installing in eclipse) using test application by selecting the child module this condition (if (projectRoot == selectedResource)) is coming true and it return src and target as child modules which is…
Tag: jface
Eclipse API Read all submodules/child modules
I am trying to read all submodules of project. Below is the code which I wrote it is working as expected but I am not sure if this is an efficient way of reading all submodules of project. Please advice. Answer children[i].FOLDER == IResource.FOLDER doesn’t do anything – FOLDER is a constant so it…
TreeContentProvider just getting every Directory of my path. (File Filter)
im trying to get every folder of my path. Now Im getting just folders but as soon as some other file comes up it gives me a JavaNullPointerException. I know its beacuse of listFiles() but I dont know how to let it work otherwise. Can someone help me? “ Answer File.listFiles() returns null if the file is…
How can I create a checkbox in a TableViewer of JFace?
I have created a tableViewer with two columns and I want to make one of them a checkbox. To do that I have created a CheckBoxCellEditor, but I don´t know why it isn´t working. The column called tableName displays it´s values OK. The column specification is the following. And the EditingSupport is the followin…