Back to project page watchme.
The source code is released under:
Copyright (c) 2012 Johan Brook, Robin Andersson, Lisa Stenberg, Mattias Henriksson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documen...
If you think the Android project watchme listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * ICursorHelper.java/* w w w .j ava2 s .c om*/ * * A helper interface that is needed in GenericCursorLoader * * Contain information about Uri, Cursor and sort order. * * @author lisastenberg * @copyright (c) 2012 Johan Brook, Robin Andersson, Lisa Stenberg, Mattias Henriksson * @license MIT */ package se.chalmers.watchme.database; import android.database.Cursor; import android.net.Uri; public interface ICursorHelper { /** * Return the Uri * @return the Uri */ public Uri getUri(); /** * Return the sortOrder * @return the Cursor */ public String getSortOrder(); /** * Return the cursor * @return the Cursor */ public Cursor getCursor(); }