List of usage examples for android.database CursorWrapper subclass-usage
From source file com.android.email.provider.EmailMessageCursor.java
/**
* This class wraps a cursor for the purpose of bypassing the CursorWindow object for the
* potentially over-sized body content fields. The CursorWindow has a hard limit of 2MB and so a
* large email message can exceed that limit and cause the cursor to fail to load.
*
* To get around this, we load null values in those columns, and then in this wrapper we directly
From source file mobisocial.musubi.provider.IdentityCursorWrapper.java
/** * Provides "safe" access to certain fields from the identities table. * identity_id must be the last column in the cursor's projection. */ public class IdentityCursorWrapper extends CursorWrapper implements CrossProcessCursor { final Context mContext;
From source file com.tct.email.provider.EmailMessageCursor.java
/**
* This class wraps a cursor for the purpose of bypassing the CursorWindow object for the
* potentially over-sized body content fields. The CursorWindow has a hard limit of 2MB and so a
* large email message can exceed that limit and cause the cursor to fail to load.
*
* To get around this, we load null values in those columns, and then in this wrapper we directly
From source file edu.mit.mobile.android.locast.data.JsonSyncableItem.java
/**
* This type of object row can be serialized to/from JSON and synchronized to a server.
*
* @author stevep
*
*/