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

9 lines
174 B
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
package androidx.sqlite.db;
public interface SupportSQLiteQuery {
void bindTo(SupportSQLiteProgram supportSQLiteProgram);
int getArgCount();
String getSql();
}