Files
rr3-apk/decompiled/sources/androidx/sqlite/db/framework/FrameworkSQLiteProgram.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

53 lines
1.6 KiB
Java

package androidx.sqlite.db.framework;
import android.database.sqlite.SQLiteProgram;
import androidx.sqlite.db.SupportSQLiteProgram;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public class FrameworkSQLiteProgram implements SupportSQLiteProgram {
private final SQLiteProgram delegate;
public FrameworkSQLiteProgram(SQLiteProgram delegate) {
Intrinsics.checkNotNullParameter(delegate, "delegate");
this.delegate = delegate;
}
@Override // androidx.sqlite.db.SupportSQLiteProgram
public void bindNull(int i) {
this.delegate.bindNull(i);
}
@Override // androidx.sqlite.db.SupportSQLiteProgram
public void bindLong(int i, long j) {
this.delegate.bindLong(i, j);
}
@Override // androidx.sqlite.db.SupportSQLiteProgram
public void bindDouble(int i, double d) {
this.delegate.bindDouble(i, d);
}
@Override // androidx.sqlite.db.SupportSQLiteProgram
public void bindString(int i, String value) {
Intrinsics.checkNotNullParameter(value, "value");
this.delegate.bindString(i, value);
}
@Override // androidx.sqlite.db.SupportSQLiteProgram
public void bindBlob(int i, byte[] value) {
Intrinsics.checkNotNullParameter(value, "value");
this.delegate.bindBlob(i, value);
}
@Override // androidx.sqlite.db.SupportSQLiteProgram
public void clearBindings() {
this.delegate.clearBindings();
}
@Override // java.io.Closeable, java.lang.AutoCloseable
public void close() {
this.delegate.close();
}
}