/* * Copyright (C) 2017 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.content.pm; import android.os.Parcel; import android.os.Parcelable; import java.util.Collections; import java.util.List; /** * Transfer a large list of Parcelable objects across an IPC. Splits into * multiple transactions if needed. * * @see BaseParceledListSlice * * @hide */ public class StringParceledListSlice extends BaseParceledListSlice { public StringParceledListSlice(List list) { super(list); } private StringParceledListSlice(Parcel in, ClassLoader loader) { super(in, loader); } public static StringParceledListSlice emptyList() { return new StringParceledListSlice(Collections. emptyList()); } @Override public int describeContents() { return 0; } @Override protected void writeElement(String parcelable, Parcel reply, int callFlags) { reply.writeString(parcelable); } @Override protected void writeParcelableCreator(String parcelable, Parcel dest) { return; } @Override protected Parcelable.Creator readParcelableCreator(Parcel from, ClassLoader loader) { return Parcel.STRING_CREATOR; } @SuppressWarnings("unchecked") public static final Parcelable.ClassLoaderCreator CREATOR = new Parcelable.ClassLoaderCreator() { public StringParceledListSlice createFromParcel(Parcel in) { return new StringParceledListSlice(in, null); } @Override public StringParceledListSlice createFromParcel(Parcel in, ClassLoader loader) { return new StringParceledListSlice(in, loader); } @Override public StringParceledListSlice[] newArray(int size) { return new StringParceledListSlice[size]; } }; }