mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
17 lines
511 B
Java
Generated
17 lines
511 B
Java
Generated
// Generated automatically from android.database.sqlite.SQLiteClosable for testing purposes
|
|
|
|
package android.database.sqlite;
|
|
|
|
import java.io.Closeable;
|
|
|
|
abstract public class SQLiteClosable implements Closeable
|
|
{
|
|
protected abstract void onAllReferencesReleased();
|
|
protected void onAllReferencesReleasedFromContainer(){}
|
|
public SQLiteClosable(){}
|
|
public void acquireReference(){}
|
|
public void close(){}
|
|
public void releaseReference(){}
|
|
public void releaseReferenceFromContainer(){}
|
|
}
|