Created
March 17, 2014 10:15
-
-
Save novotnyr/9596918 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.database.ContentObserver; | |
import android.database.Cursor; | |
import android.database.sqlite.SQLiteDatabase.CursorFactory; | |
public class Defaults { | |
public static final String[] NO_PROJECTION = null; | |
public static final String[] ALL_COLUMNS = null; | |
public static final String NO_SELECTION = null; | |
public static final String[] NO_SELECTION_ARGS = null; | |
public static final String NO_SORT_ORDER = null; | |
public static final String NO_GROUP_BY = null; | |
public static final String NO_HAVING = null; | |
public static final String AUTOGENERATED_ID = null; | |
public static final CursorFactory DEFAULT_CURSOR_FACTORY = null; | |
public static final String NO_NULL_COLUMN_HACK = null; | |
public static final Cursor NO_CURSOR = null; | |
public static final ContentObserver NO_CONTENT_OBSERVER = null; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment