handle parameters in implement members

This commit is contained in:
Dmitry Jemerov
2011-11-04 18:10:11 +01:00
parent 8f15eea9c5
commit 7714e850b9
6 changed files with 44 additions and 8 deletions
@@ -0,0 +1,5 @@
import foo.Intf
class Impl(): Intf {
<caret>
}
@@ -0,0 +1,7 @@
import foo.Intf
class Impl(): Intf {
override fun fooBar(i: Int, s: Array<String?>?, foo: Any?) {
}
}
@@ -0,0 +1,5 @@
package foo;
interface Intf {
void fooBar(int i, String[] s, Object foo);
}