Trying to implement a Java interface: ```interfac...
# announcements
s
Trying to implement a Java interface:
Copy code
interface Cancellable { boolean isCancelled(); void setCancelled(boolean) }
In Kotlin if i try to do
override var cancelled: Boolean = false
it says nothing to override. So I have to implement getter (
is
prefix, not
get
) and setter, is there around this?