- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
15 lines
312 B
Java
15 lines
312 B
Java
package androidx.recyclerview.widget;
|
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface ListUpdateCallback {
|
|
void onChanged(int i, int i2, @Nullable Object obj);
|
|
|
|
void onInserted(int i, int i2);
|
|
|
|
void onMoved(int i, int i2);
|
|
|
|
void onRemoved(int i, int i2);
|
|
}
|