Is there any smart way to override Java method in Scala using eclipse?
I don't see in eclipse (Scala IDE) the option for 'Source' which I used to using for Java files (Source -> Override/ Implement method).
I tried other way typing def override exampleMethod
and here I pressed Ctrl + Space. Ide correctly suggests the method from super class however when I accept suggestion I see only
exampleMethod(param1, param2... etc.) // without arguments types - like a method call
Method which I wanted to override have 7 parameters and foreach of them I had to check its type. That is not very convenient.
But maybe I could do it somehow better?