Refactoring: rename android-compiler-plugin to android-extensions-compiler

This commit is contained in:
Natalia Ukhorskaya
2016-03-11 15:59:29 +03:00
parent 93161be199
commit 7e6fa8ef17
159 changed files with 84 additions and 84 deletions
@@ -0,0 +1,11 @@
package android.widget
import android.view.View
import android.content.Context
open class Button(ctx: Context): View(ctx) {override fun toString() = "Button"}
open class EditText(ctx: Context): View(ctx) {override fun toString() = "EditText"}
open class TextView(ctx: Context): View(ctx) {override fun toString() = "TextView"}
open class FrameLayout(ctx: Context): View(ctx) {override fun toString() = "FrameLayout"}
open class RelativeLayout(ctx: Context): View(ctx) {override fun toString() = "RelativeLayout"}
open class ImageView(ctx: Context): View(ctx) {override fun toString() = "ImageView"}