mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
10 lines
290 B
Kotlin
Vendored
10 lines
290 B
Kotlin
Vendored
package android.app
|
|
|
|
import android.view.View
|
|
import android.app.Activity
|
|
|
|
abstract class Fragment {
|
|
open fun getActivity(): Activity = throw Exception("Function getActivity() is not overridden")
|
|
open fun getView(): View? = throw Exception("Function getView() is not overridden")
|
|
}
|