@@ -124,7 +124,7 @@ order for it to work. Any other backup services available might also require you
124124in order to store your data on their servers.</li>
125125 <li>Define a backup agent by either:</p>
126126 <ol type="a">
127- <li><a href="#backupAgent ">Extending BackupAgent</a>
127+ <li><a href="#BackupAgent ">Extending BackupAgent</a>
128128 <p>The {@link android.app.backup.BackupAgent} class provides the central interface with
129129which your application communicates with the Backup Manager. If you extend this class
130130directly, you must override {@link
@@ -133,7 +133,7 @@ onBackup()} and {@link
133133android.app.backup.BackupAgent#onRestore(BackupDataInput,int,ParcelFileDescriptor)
134134onRestore()} to handle the backup and restore operations for your data.</p>
135135 <p><em>Or</em></p>
136- <li><a href="#backupAgentHelper ">Extending BackupAgentHelper</a>
136+ <li><a href="#BackupAgentHelper ">Extending BackupAgentHelper</a>
137137 <p>The {@link android.app.backup.BackupAgentHelper} class provides a convenient
138138wrapper around the {@link android.app.backup.BackupAgent} class, which minimizes the amount of code
139139you need to write. In your {@link android.app.backup.BackupAgentHelper}, you must use one or more
@@ -278,7 +278,7 @@ must implement the following callback methods:</p>
278278 <dt>{@link
279279android.app.backup.BackupAgent#onBackup(ParcelFileDescriptor,BackupDataOutput,ParcelFileDescriptor)
280280onBackup()}</dt>
281- <dd>The Backup Manager calls this method after you <a href="#RequestBackup ">request a
281+ <dd>The Backup Manager calls this method after you <a href="#RequestingBackup ">request a
282282backup</a>. In this method, you read your application data from the device and pass the data you
283283want to back up to the Backup Manager, as described below in <a href="#PerformingBackup">Performing
284284backup</a>.</dd>
@@ -287,8 +287,8 @@ backup</a>.</dd>
287287android.app.backup.BackupAgent#onRestore(BackupDataInput,int,ParcelFileDescriptor)
288288onRestore()}</dt>
289289 <dd>The Backup Manager calls this method during a restore operation (you can <a
290- href="#RequestRestore ">request a restore</a>, but the system automatically performs restore when the
291- user re-installs your application). When it calls this method, the Backup Manager delivers your
290+ href="#RequestingRestore ">request a restore</a>, but the system automatically performs restore when
291+ the user re-installs your application). When it calls this method, the Backup Manager delivers your
292292backup data, which you then restore to the device, as described below in <a
293293href="#PerformingRestore">Performing restore</a>.</dd>
294294</dl>
0 commit comments