discord-jadx/app/src/main/java/androidx/sqlite/db/SupportSQLiteQuery.java

9 lines
174 B
Java

package androidx.sqlite.db;
public interface SupportSQLiteQuery {
void bindTo(SupportSQLiteProgram supportSQLiteProgram);
int getArgCount();
String getSql();
}