With eclipse, how to hide superclass methods in Content Assist?

For example, I have:

JPanel pan = new JPanel ();

then I do the "pan". and eclipse shows Content Assist. This helper content has all the methods in the JPanel class and all the methods in all JPanel superclasses (many). I want this eclipse to show me only the methods of the JPanel class, and not the methods of its superclasses.

how to do it?

+7
source share
1 answer

Content is not supported, but you can use Ctrl + O to view all methods of a class without a superclass.

0
source

All Articles