Kotlin implement members initial (not much works)

This commit is contained in:
Dmitry Jemerov
2011-11-04 17:59:59 +01:00
parent 0e4a7ebe90
commit 8f15eea9c5
19 changed files with 390 additions and 73 deletions

View File

@@ -0,0 +1,5 @@
import foo.Intf
class Impl(): Intf {
<caret>
}

View File

@@ -0,0 +1,8 @@
import foo.Intf
class Impl(): Intf {
override fun getFooBar(): String? {
return null
}
}

View File

@@ -0,0 +1,5 @@
package foo;
interface Intf {
String getFooBar();
}