/**@class android.content.MemoryFileProvider
@extends android.content.ContentProvider

Simple test provider that runs in the local process. */
var MemoryFileProvider = {

/***/
TEST_BLOB : "null",
/**
*/
onCreate : function(  ) {},

/**
*/
query : function(  ) {},

/**
*/
getType : function(  ) {},

/**
*/
openFile : function(  ) {},

/**
*/
update : function(  ) {},

/**
*/
insert : function(  ) {},

/**
*/
delete : function(  ) {},


};