I won't want to have edit any working sets. I just want a way to, across all workspaces and projects, prevent .class files from ever showing in the Open Resource Dialog. Is there a way to do this?
|
One option is to filter derived resources. In the upper right corner of the 'Open Resource' dialog there is an arrow you can click to bring up a dropdown menu for filtering. Uncheck the 'Show Derived Resources' option, if it is checked. If you still see '.class' files, they probably aren't being marked as derived. If they're by themselves in their own folder hierarchy you can fix this by right-clicking the root folder to edit folder properties, and check the 'Derived' checkbox. If they're mixed with your '.java' files...tough luck, you'd have to set the derived property on each '.class' file by hand. As far as I can tell there's no way to mark class files as derived resources globally for the workspace, but I believe when you create a new Java project the 'bin' folder is marked as derived by default (if you use the default wizard settings) |
|||||||
|
|
You can use When creating a new one, choose the type With the couple of large projects I'm working on it has a noticeable impact on search speed too. |
|||
|
|
|
To change this behaviour and hide the “.class” files you need to do the following.
“.class” files will now be hidden in future. Source: http://ayubmalik.co.uk/2011/12/hide-class-files-when-opening-a-type-or-resource-in-eclipse-ide/ |
|||
|
|
To exclude an entire directory hierarchy, e.g. the |
|||||
|
|
|
Version 3.5 Open Resource dialog has a way turn "Show Derived Resources" on/off by a small dropdown menu at the top right hand corner. Turning it off will hide classes. Or you could type an expression on the "Select an item to open" text box such as : *.java |
|||
|
|