read java bean properties as kotlin properties

This commit is contained in:
Stepan Koltsov
2012-02-21 23:15:36 +04:00
parent cc8d263f9e
commit f83c5e0d83
18 changed files with 137 additions and 9 deletions

View File

@@ -0,0 +1,6 @@
package test
open class TwoSetters() {
open fun setSize(p0: String?) { }
open fun setSize(p0: Int) { }
}