/**@class android.app.backup.FullBackupAgent
@extends android.app.backup.BackupAgent

 Simple concrete class that merely provides the default BackupAgent full backup/restore
 implementations for applications that do not supply their own.
 
 {@hide}
*/
var FullBackupAgent = {

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

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


};