This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private class FilterCursorWrapper extends CursorWrapper { | |
private String filter; | |
private int column; | |
private int[] index; | |
private int count=0; | |
private int pos=0; | |
public FilterCursorWrapper(Cursor cursor,String filter,int column) { | |
super(cursor); |