4

I'm writing java code using scala one (Kafka api), and I can't get eclipse to get the argument names in methods autocompletion, it's instead suggesting things like Method(String arg0, int arg1,...)

The source is apparently found correctly, as I can browse into it with F12, and I see the correct argument names, but it's still a bit tedious to go into every function, retrieve the argument names, and write the call after that.

I've installed the scala plugin for eclipse, which did not solve this.

Is is possible to solve this ? If yes, how ?

Thanks !

Roland Ewald
  • 4,630
  • 3
  • 35
  • 49
C4stor
  • 8,355
  • 6
  • 29
  • 47
  • Depends AFAIK on the [JavaDoc](http://stackoverflow.com/a/7043711/995891) part, not on the sources. (And I have no clue if there is such a thing as javadocs in scala) – zapl Dec 16 '13 at 10:17

1 Answers1

0

I had come across this issue a while ago and was figuring out how to fix it. Eventually used this plugin. You should take a look at his. https://stackoverflow.com/a/15520267/614867

Community
  • 1
  • 1