27 lines
772 B
Plaintext
Vendored
27 lines
772 B
Plaintext
Vendored
// INTENTION_TEXT: Add Parcelable Implementation
|
|
// INSPECTION_CLASS: com.android.tools.idea.lint.AndroidLintParcelCreatorInspection
|
|
import android.os.Parcel
|
|
import android.os.Parcelable
|
|
|
|
class MissingCreator() : Parcelable {
|
|
constructor(parcel: Parcel) : this() {
|
|
}
|
|
|
|
override fun writeToParcel(dest: Parcel?, flags: Int) {
|
|
TODO("not implemented")
|
|
}
|
|
|
|
override fun describeContents(): Int {
|
|
TODO("not implemented")
|
|
}
|
|
|
|
companion object CREATOR : Parcelable.Creator<MissingCreator> {
|
|
override fun createFromParcel(parcel: Parcel): MissingCreator {
|
|
return MissingCreator(parcel)
|
|
}
|
|
|
|
override fun newArray(size: Int): Array<MissingCreator?> {
|
|
return arrayOfNulls(size)
|
|
}
|
|
}
|
|
} |