com.stanfy.enroscar.content.UniqueObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enroscar-content Show documentation
Show all versions of enroscar-content Show documentation
Helper classes and extended abstractions for Android loaders, content resolvers, and DB access.
package com.stanfy.enroscar.content;
/**
* Interface of a unique object. They are widely used in view adapters.
*/
public interface UniqueObject {
long getId();
}