mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
14 lines
265 B
Kotlin
Vendored
14 lines
265 B
Kotlin
Vendored
package android.os
|
|
|
|
class Parcel
|
|
|
|
interface Parcelable {
|
|
fun describeContents(): Int
|
|
|
|
fun writeToParcel(parcel: Parcel, flags: Int)
|
|
|
|
interface Creator<T> {
|
|
fun createFromParcel(parcel: Parcel): T
|
|
fun newArray(size: Int): Array<T>
|
|
}
|
|
} |