/** * Returns the converter used to convert the filtering Cursor * into a String. * * @return null if the converter does not exist or an instance of * {@link org.robolectric.shadows.ShadowSimpleCursorAdapter.CursorToStringConverter} * * @see #setCursorToStringConverter(org.robolectric.shadows.ShadowSimpleCursorAdapter.CursorToStringConverter) * @see #getStringConversionColumn() * @see #setStringConversionColumn(int) * @see android.widget.CursorAdapter#convertToString(android.database.Cursor) */ @Implementation public CursorToStringConverter getCursorToStringConverter() { return mCursorToStringConverter; }
/** * Sets the converter used to convert the filtering Cursor * into a String. * * @param cursorToStringConverter the Cursor to String converter, or * null to remove the converter * * @see #setCursorToStringConverter(org.robolectric.shadows.ShadowSimpleCursorAdapter.CursorToStringConverter) * @see #getStringConversionColumn() * @see #setStringConversionColumn(int) * @see android.widget.CursorAdapter#convertToString(android.database.Cursor) */ @Implementation public void setCursorToStringConverter(CursorToStringConverter cursorToStringConverter) { mCursorToStringConverter = cursorToStringConverter; }