Created
August 25, 2016 21:56
-
-
Save dtrailin/79a7c41f4abaab5774d449f2338dcd3f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var isChecked: Boolean by object { | |
| operator fun getValue(thisRef: Any?, property: KProperty<*>): Boolean { | |
| return checkbox.checked | |
| } | |
| operator fun setValue(thisRef: Any?, property: KProperty<*>, value: Boolean) { | |
| checkbox.checked = value | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment