Skip to content

Instantly share code, notes, and snippets.

@novotnyr
Created March 17, 2014 10:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save novotnyr/9596918 to your computer and use it in GitHub Desktop.
Save novotnyr/9596918 to your computer and use it in GitHub Desktop.
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