Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find complete list of warnings in eclipse IDE

I'd like to find the places in my project where 'The static method should be accessed in a static way' warning raises.

Is there any way of getting the complete list at once ? I did search for a rule set in PMD, but dint find any. So, need help !!!

like image 352
Anuj Balan Avatar asked Jul 22 '11 07:07

Anuj Balan


People also ask

What does the Problems view show in Eclipse?

The “Problems” view in Eclipse lists errors and warnings in the workspace. In its default settings this view is not entirely helpful, but it is highly customizable. Today I want to show you how you can configure this view to shift the focus to the interesting errors and warnings in your current area of work.

How do I get rid of the black blinking cursor in Eclipse?

Just hit the "insert" key on your keyboard once more... it's usually near the 'delete' (not backspace), scroll lock and 'Print Screen' (often above the cursor keys in a full size keyboard.) This will switch back to insert mode and turn your cursor into a vertical line rather than a rectangle.

What are markers in Eclipse?

Markers is a part of General view folder. You can show it up from "Window>Show View>Other". You will find Markers either by expanding 'General' or by searching for it.


2 Answers

Click on the small triangle in the upper right corner of the problems view and select "Configure Contents". In that dialog check "Show all items" and uncheck "Use item limits" to show all warnings.

like image 55
Daniel Avatar answered Oct 06 '22 01:10

Daniel


Try the Problems view. It should be at the bottom of the screen when using the Java perspective.

like image 26
haggai_e Avatar answered Oct 06 '22 02:10

haggai_e