Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

is there Eclipse useful Add On for AutoComplete function like xCode?

I've started up with developing Java.

However, These days I've started iPhone project and gave me lazy writing code;auto code generate functionality in xCode.

Are there any non-pay free edition add-on exist that does similar to xCode? I mean, I do know Eclipse already has partial auto method look up when you put '.' (dot) token after class name which shows the list of methods.

thank you all.

like image 928
Yoon Lee Avatar asked Sep 21 '10 07:09

Yoon Lee


1 Answers

The functionality is called content assist in Eclipse. It comes as default.

To trigger content assist, normally you have to click Ctrl+Space (Windows/Linux). But as you said, on Java it will be auto-activated when user press ..

You can however change this behavior. Go to Preferences -> Java -> Editor -> Content Assist and change the Auto activation triggers for Java.

For example to get the behavior of xCode, you could change it to ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.

alt text

like image 80
nanda Avatar answered Sep 28 '22 12:09

nanda