All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.database.sqlite.SQLiteOpenHelper Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.8.0
Show newest version
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!");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy