Can I set Eclipse to only emit errors, warnings, etc. for the current project?

I want to be able to ignore warnings in other projects in my workspace when I'm concentrating on my current project. I looked through Window | Preferences and saw no such option. Eclipse obviously knows which project is current, because when I mash F11 it runs (or tries to).

Upvotes: 19

Views: 5992

Answers (4)

Nikolay Elenkov
Nikolay Elenkov

Reputation: 52936

In the Problems view, click the little triangle thinggie on the right, and select Show -> Errors/Warnings on selection. Then it will show the errors from the currently selected project/file, etc.

Triangle Thing

Upvotes: 39

brianestey
brianestey

Reputation: 8302

You can make use of Working Sets to put projects into logical groups.

Upvotes: 0

Thunder Rabbit
Thunder Rabbit

Reputation: 5449

I just upgraded Eclipse (Helios) to the latest version of the SDK and LogCat shows my current application automagically.

Upvotes: 1

Tassos Bassoukos
Tassos Bassoukos

Reputation: 16142

You can either Close Project all other projects, you can set a filter on the Problems View to only show errors for the current project, or use Mylin to limit the scope of what you are currently seeing.

Upvotes: 3

Related Questions