zzn2
05/02/2016, 3:33 PMKProperty1.readableName to:
val <T, R> KProperty1<T, R>.readableName: String
get() {
val annotation = annotations.elementAtOrNull(0)
return when(annotation) {
is ReadableName -> annotation.name
else -> ""
}
}