/**@class android.content.MutableContextWrapper
@extends android.content.ContextWrapper

 Special version of {@link android.content.ContextWrapper} that allows the base context to
 be modified after it is initially set.
*/
var MutableContextWrapper = {

/**Change the base context for this ContextWrapper. All calls will then be
 delegated to the base context.  Unlike ContextWrapper, the base context
 can be changed even after one is already set.
@param {Object {Context}} base The new base context for this wrapper.
*/
setBaseContext : function(  ) {},


};