Example usage for android.database AbstractCursor subclass-usage

List of usage examples for android.database AbstractCursor subclass-usage

Introduction

In this page you can find the example usage for android.database AbstractCursor subclass-usage.

Usage

From source file org.dkf.jmule.views.SuggestionsCursor.java

/**
 * @author gubatron
 * @author aldenml
 */
class SuggestionsCursor extends AbstractCursor {

From source file com.frostwire.android.gui.views.SuggestionsCursor.java

/**
 * 
 * @author gubatron
 * @author aldenml
 * 
 */

From source file com.fabernovel.alertevoirie.utils.JSONCursor.java

public class JSONCursor extends AbstractCursor {
    private String[] columns;
    private JSONArray dataArray;

    public JSONCursor(JSONArray data, String[] cols) {
        dataArray = data;

From source file android.support.content.InMemoryCursor.java

/**
 * A {@link Cursor} implementation that stores information in-memory, in a type-safe fashion.
 * Values are stored, when possible, as primitives to avoid the need for the autoboxing (as is
 * necessary when working with MatrixCursor).
 *
 * <p>Unlike {@link android.database.MatrixCursor}, this cursor is not mutable at runtime.

From source file com.hyunnyapp.easycursor.jsoncursor.EasyJsonCursor.java

public class EasyJsonCursor extends AbstractCursor implements EasyCursor {
    public static final String DEFAULT_STRING = null;
    public static final boolean DEFAULT_BOOLEAN = false;
    public static final double DEFAULT_DOUBLE = 0d;
    public static final float DEFAULT_FLOAT = 0f;
    public static final int DEFAULT_INT = 0;