Files
T
2016-06-24 15:10:19 +03:00

9 lines
184 B
Kotlin
Vendored

package org.my.cool
import android.widget.Button
import android.content.Context
class MyButton(ctx: Context): Button(ctx) {
override fun toString(): String {return "MyButton"}
}