Eclipse how to directly show a list of available functions

eclipse, java

Solution

What you are referring to is called code completion and can be accessed with Ctrl+ Space in Eclipse. This will list all variables, fields, methods, classes that is applicable in the current context.

Also, there is Ctrl + O in Eclipse, which will give you a list of all the available methods in the current class.

Problem

Eclipse has a feature in which you write a classname followed by a dot, and a list of available public functions appears. But what if I want to see the functions of the class I am currently in? The only solution I know is to write `this.`, select the function from the appearing list, and delete the `this.`. Is there any way to show the popup menu without writing `this.`, a hotkey perhaps?

Original source

Related problems