kousha
kousha

Reputation: 782

eclipse auto complete before finishing the full name of a method

I am using eclipse for Java ee. One thing I noticed is in the computer in my office, eclipse auto complete is working even though I didn't finish writing the full name of the method.

For example: as soon as I write

  getSer

It suggests me the

   getServletContex

However at home the suggestion only appear when I am done with the method name and enter "."

At the office I am using Helios and at home Juno.

Anyone knows how to make the other eclipse to auto complete before I finish the name of the method?

Upvotes: 0

Views: 2926

Answers (2)

Aashray
Aashray

Reputation: 2763

The IDE only suggests these auto-complete sometimes. Use CTRL+space to call it yourself.

Upvotes: 1

Vallabh Patade
Vallabh Patade

Reputation: 5110

Go to Preferences>java>Editor>Content Assist and configure your settings.

Upvotes: 2

Related Questions