ASMR/src/main/kotlin/net/shadowfacts/shadowui/LayoutVariable.kt

14 lines
307 B
Kotlin
Raw Normal View History

2019-06-21 20:22:23 +00:00
package net.shadowfacts.shadowui
import no.birkett.kiwi.Variable
2019-06-22 14:59:18 +00:00
/**
* @author shadowfacts
*/
class LayoutVariable(val owner: View, val property: String): Variable("LayoutVariable") {
2019-06-21 20:22:23 +00:00
override fun getName() = "$owner.$property"
override fun toString() = "LayoutVariable(name=$name, value=$value)"
}