Obsolete testData files removed

This commit is contained in:
Yan Zhulanow
2014-12-09 14:21:09 +03:00
parent 264178c4ea
commit 94995f5a20
3 changed files with 0 additions and 25 deletions
@@ -1,6 +0,0 @@
package android.app
import android.view.View
abstract class Activity {
open abstract fun findViewById(id: Int): View?
}
@@ -1,3 +0,0 @@
package android.view
trait View
@@ -1,16 +0,0 @@
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"}
}