android.database.sqlite.SQLiteOpenHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of findsecbugs-plugin-deps Show documentation
Show all versions of findsecbugs-plugin-deps Show documentation
This module create facades for all the APIs (classes, interfaces and annotations)
that are use in the test code. The objective is to avoid the needed to download
all the framework supported by the static analyzer.
package android.database.sqlite;
import android.content.Context;
import android.database.DatabaseErrorHandler;
public abstract class SQLiteOpenHelper
{
public SQLiteOpenHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version)
{
throw new RuntimeException("Stub!");
}
public SQLiteOpenHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version, DatabaseErrorHandler errorHandler)
{
throw new RuntimeException("Stub!");
}
public String getDatabaseName()
{
throw new RuntimeException("Stub!");
}
public void setWriteAheadLoggingEnabled(boolean enabled)
{
throw new RuntimeException("Stub!");
}
public SQLiteDatabase getWritableDatabase()
{
throw new RuntimeException("Stub!");
}
public SQLiteDatabase getReadableDatabase()
{
throw new RuntimeException("Stub!");
}
public synchronized void close()
{
throw new RuntimeException("Stub!");
}
public void onConfigure(SQLiteDatabase db)
{
throw new RuntimeException("Stub!");
}
public abstract void onCreate(SQLiteDatabase paramSQLiteDatabase);
public abstract void onUpgrade(SQLiteDatabase paramSQLiteDatabase, int paramInt1, int paramInt2);
public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion)
{
throw new RuntimeException("Stub!");
}
public void onOpen(SQLiteDatabase db)
{
throw new RuntimeException("Stub!");
}
}