robob
robob

Reputation: 1759

Browsing Java comments in Eclipse in an easy way

In a large project I need to review all the code comments and so I'm searching for something in Eclipse to browse comments in an easy way (Javadoc comments principally). Is it possible that doesn't exist a view or something else in Eclipse to do this?

I am sure it exists so please suggest me the tips :)

thanks a lot

rob

Upvotes: 1

Views: 164

Answers (2)

Anthony Accioly
Anthony Accioly

Reputation: 22481

For browsing there is a view:

Window -> Show View -> Other... -> Java -> Javadoc

If you select a class / field / method in the Project Explorer it will show up in the Javadoc view.

For searching try a file search with file name pattern set to *.java.

Search -> File...

Upvotes: 0

Dorpsidioot
Dorpsidioot

Reputation: 474

Just generate the javadoc and go from there, I think that would make a lot more sense

Upvotes: 3

Related Questions