Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse: When displaying a list of methods (ctrl-space), is there a way to have methods in that class - bold?

Tags:

java

eclipse

Eclipse:

When displaying a list of methods (ctrl-space), is there a way to have methods found in that class have names in bold? Netbeans has or at least had a feature that would bold the names of methods found within that class while inherited methods remained normal text.

This made it very easy to know what methods are from within the class you are editing.

Is there a way to do this in the latest version of Eclipse?

Thanks.

like image 351
D-Klotz Avatar asked Nov 06 '13 19:11

D-Klotz


1 Answers

It seems eclipse does not support it.

What I do in such cases (workaround):

  • Open the affected class (Navigate -> Open Type...)
  • Press CTRL-O, this will show the methods implemented in this class.
  • Press CTRL-O again, this will also show the inherited methods.
like image 89
Synox Avatar answered Oct 12 '22 11:10

Synox