All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.solovyev.android.samples.db.DbItemService Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package org.solovyev.android.samples.db;

import android.content.Context;
import org.jetbrains.annotations.NotNull;

import java.util.List;

/**
 * User: serso
 * Date: 8/10/12
 * Time: 4:40 PM
 */
public interface DbItemService {

    @NotNull
    List getAllDbItems(@NotNull Context context);

    @NotNull
    List getAllStartsWith(@NotNull String prefix, @NotNull Context context);

    void addItem(@NotNull DbItem dbItem, @NotNull Context context);

    @NotNull
    List removeItemByName(@NotNull String name, @NotNull Context context);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy