package androidx.recyclerview.widget; import androidx.recyclerview.widget.RecyclerView; import androidx.recyclerview.widget.SortedList; public abstract class SortedListAdapterCallback extends SortedList.Callback { public final RecyclerView.Adapter mAdapter; public SortedListAdapterCallback(RecyclerView.Adapter adapter) { this.mAdapter = adapter; } @Override // androidx.recyclerview.widget.SortedList.Callback public void onChanged(int i, int i2) { this.mAdapter.notifyItemRangeChanged(i, i2); } @Override // androidx.recyclerview.widget.SortedList.Callback, androidx.recyclerview.widget.ListUpdateCallback public void onChanged(int i, int i2, Object obj) { this.mAdapter.notifyItemRangeChanged(i, i2, obj); } @Override // androidx.recyclerview.widget.ListUpdateCallback public void onInserted(int i, int i2) { this.mAdapter.notifyItemRangeInserted(i, i2); } @Override // androidx.recyclerview.widget.ListUpdateCallback public void onMoved(int i, int i2) { this.mAdapter.notifyItemMoved(i, i2); } @Override // androidx.recyclerview.widget.ListUpdateCallback public void onRemoved(int i, int i2) { this.mAdapter.notifyItemRangeRemoved(i, i2); } }