Java 类android.widget.SimpleCursorAdapter.CursorToStringConverter 实例源码
项目:FullRobolectricTestSample
文件:ShadowSimpleCursorAdapter.java
/**
* 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;
}
项目:FullRobolectricTestSample
文件:ShadowSimpleCursorAdapter.java
/**
* 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;
}