Filter our own types in Eclipse 'open type'?

I am wondering if there is a way to set up the Eclipse 'Open Type' search tool to separate the types defined in "our own" source code (that is, the source code in the project) from the types defined in the libraries? I very often want to find a type specific to a project, but it is sunk into a sea of ​​types from the library.

One solution would be to have all of our types in one package using the source package filter; Unfortunately, this is not possible now. And it's a little tricky to turn on and off, often you want to search among all types.

EDIT. Yes, global text search, but it is slower and a lot inconvenient for this purpose.

+4
source share
1 answer

Perhaps you want to check the settings dialog: Java> Appearance> Type Filters. There you can configure a filter for types from external libraries.

+2
source

All Articles