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?
Content is not supported, but you can use Ctrl + O to view all methods of a class without a superclass.