Example usage for android.content ContentProvider subclass-usage

List of usage examples for android.content ContentProvider subclass-usage

Introduction

In this page you can find the example usage for android.content ContentProvider subclass-usage.

Usage

From source file com.psiphon3.psiphonlibrary.LoggingProvider.java

/**
 * All logging is done directly to the LoggingProvider from all processes.
 */
public class LoggingProvider extends ContentProvider {
    public static final Uri INSERT_URI = Uri
            .parse("content://" + BuildConfig.APPLICATION_ID + "." + LoggingProvider.class.getSimpleName());

From source file com.bushstar.htmlcoin_android_wallet.ExchangeRatesProvider.java

/**
 * @author Andreas Schildbach
 */
public class ExchangeRatesProvider extends ContentProvider {
    public static class ExchangeRate {
        public ExchangeRate(@Nonnull final String currencyCode, @Nonnull final BigInteger rate,

From source file com.bushstar.kobocoin_android_wallet.ExchangeRatesProvider.java

/**
 * @author Andreas Schildbach
 */
public class ExchangeRatesProvider extends ContentProvider {
    public static class ExchangeRate {
        public ExchangeRate(@Nonnull final String currencyCode, @Nonnull final BigInteger rate,

From source file com.woollysammoth.nubit_android_wallet.ExchangeRatesProvider.java

/**
 * @author Andreas Schildbach
 */
public class ExchangeRatesProvider extends ContentProvider {
    public static class ExchangeRate {
        public ExchangeRate(@Nonnull final String currencyCode, @Nonnull final BigInteger rate,

From source file in.leafco.wallet.ExchangeRatesProvider.java

/**
 * @author Andreas Schildbach
 */
public class ExchangeRatesProvider extends ContentProvider {
    public static class ExchangeRate {
        public ExchangeRate(@Nonnull final String currencyCode, @Nonnull final BigInteger rate,

From source file com.matthewmitchell.nubits_android_wallet.ExchangeRatesProvider.java

/**
 * @author Andreas Schildbach
 */
public class ExchangeRatesProvider extends ContentProvider {
    public static class ExchangeRate {
        public ExchangeRate(@Nonnull final String currencyCode, @Nonnull final BigInteger rate,

From source file com.dopecoin.wallet.ExchangeRatesProvider.java

/**
 * @author Andreas Schildbach
 */
public class ExchangeRatesProvider extends ContentProvider {
    public static class ExchangeRate {
        public ExchangeRate(@Nonnull final String currencyCode, @Nonnull final BigInteger rate,

From source file com.matthewmitchell.peercoin_android_wallet.ExchangeRatesProvider.java

/**
 * @author Andreas Schildbach
 */
public class ExchangeRatesProvider extends ContentProvider {
    public static class ExchangeRate {
        public ExchangeRate(@Nonnull final String currencyCode, @Nonnull final BigInteger rate,

From source file com.hybris.mobile.lib.commerce.provider.CatalogProvider.java

/**
 * Content provider for the catalog
 */
public class CatalogProvider extends ContentProvider {
    private static final String TAG = CatalogProvider.class.getCanonicalName();

From source file com.coinomi.wallet.ExchangeRatesProvider.java

/**
 * @author Andreas Schildbach
 */
public class ExchangeRatesProvider extends ContentProvider {

    public static class ExchangeRate {