
Luckily it also work the other way around, so you can keep f4 to mean Dashboard, but use fn+f4 to do Show Hierarchy.
What I find out about eclipse while developing and maintaining specialist RCP applications and contributing to Mylyn.


java.io.File. When you work in Eclipse you reference files in the workspace using org.eclipse.core.resources.IFile. So in this case I needed to convert between the two formats.f.getFullPath().toFile() and that worked! Because I tested all my code with small data sets in the workspace, it wasn't until later that I found out, this does not work with linked resources:java.io.FileNotFoundException: /Remote-Data/eulumdat/data.file (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.(FileInputStream.java:106)
at java.io.FileReader.(FileReader.java:55)
at xxxx
Now I selected f.getLocation().toFile() and that did it!