In the tutorial's notepad application we have
android.database.Cursor
Cursor note=mDbHelper.fetchNote(mRowId); (Interface Cursor can have an instance?)
Then
note.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE); (isn't this method suppose to be abstract?)
It might seem to be naive query , but i m confused.

