Files
kotlin-fork/plugins/android-compiler-plugin/testData/android/fakeHelpers/Widgets.kt
T

16 lines
375 B
Kotlin

package android.widget
import android.view.View
class EditText: View {
override fun toString(): String {return "EditText"}
}
class TextView: View {
override fun toString(): String {return "TextView"}
}
class Button: View {
override fun toString(): String {return "Button"}
}
class FrameLayout: View {
override fun toString(): String {return "FrameLayout"}
}