Meanwhile, kotlin properties already generate setters and getters for them, thus all you need is an
override
modifier.
d
Dalinar
09/05/2017, 12:35 PM
I wonder if it is not possible in kotlin to override as a property when the setter is in one java interface and the getter in another in java but the kotlin class implements the setter interface (which itself in java implements the getter interface).. this might be why i'm having problems
Dalinar
09/05/2017, 12:36 PM
I did it that way because I wanted one interface read-only, but the other writeable
Dalinar
09/05/2017, 12:45 PM
I'll try porting the java interfaces to kotlin making one val and the other overriding with var and using JVmfield, hopefully that'll work