Everyone knows the Ctrl + Space keyboard shortcut in Eclipse, but I have one question. If you use this shortcut, you will get a list of visible methods and fields. eg:.
JTable table = new JTable(dataModel);
table.<Ctrg+Space>
.. and you will get a list of JTable, JComponent methods, etc. Inherited methods are also listed. Sometimes this list is very long ...
My question is: does Eclipse hide the inherited methods? So, am I just getting a list of methods of this particular class? For instance. when i use ..
table.<Ctrg+Space>
.. I will get a list of JTable methods, and JComponent will not be specified.
Hope there is a way. I think a search in the list of method results will not help.
Hooray!
source
share