views:

58

answers:

2

I'm developing a web application and I want the user to see autocomplete results like the autocomplete results shown by Eclipse.

Where should I start from?

+1  A: 

I would suggest you consider using Java reflection and study the Java Class class implementation, specifically the getMethods() method which should supply the foundational functionality you are looking for, see java.lang.class

Ashley Walton
+1  A: 

Hmmm... Seems interesting. Since you want to provide an online editor, so check out this jQueryUI page ( http://jqueryui.com/demos/autocomplete/ ). Along with this you will need knowledge of java reflection.

Favonius