Skip to content

Instantly share code, notes, and snippets.

@yenerm
Last active October 8, 2020 21:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yenerm/fe7614bb00dc2b463418b0871c292019 to your computer and use it in GitHub Desktop.
Save yenerm/fe7614bb00dc2b463418b0871c292019 to your computer and use it in GitHub Desktop.
<!-- Copyright 2019 Google LLC.
SPDX-License-Identifier: Apache-2.0 -->
override fun setValue(
thisRef: Any?,
property: KProperty<*>,
value: String
) {
if (thisRef is Person) {
thisRef.updateCount++
}
formattedString = value.toLowerCase().capitalize()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment