Merge "API CHANGE: remove obsolete constants and hide some methods" into froyo

This commit is contained in:
Christopher Tate
2010-04-12 15:13:35 -07:00
committed by Android (Google) Code Review
2 changed files with 1 additions and 38 deletions

View File

@@ -27062,19 +27062,6 @@
deprecated="not deprecated"
visibility="public"
>
<method name="setKeyPrefix"
return="void"
abstract="false"
native="false"
synchronized="false"
static="false"
final="false"
deprecated="not deprecated"
visibility="public"
>
<parameter name="keyPrefix" type="java.lang.String">
</parameter>
</method>
<method name="writeEntityData"
return="int"
abstract="false"
@@ -27109,28 +27096,6 @@
<exception name="IOException" type="java.io.IOException">
</exception>
</method>
<field name="OP_DELETE"
type="int"
transient="false"
volatile="false"
value="2"
static="true"
final="true"
deprecated="not deprecated"
visibility="public"
>
</field>
<field name="OP_UPDATE"
type="int"
transient="false"
volatile="false"
value="1"
static="true"
final="true"
deprecated="not deprecated"
visibility="public"
>
</field>
</class>
<interface name="BackupHelper"
abstract="true"

View File

@@ -25,9 +25,6 @@ import java.io.IOException;
public class BackupDataOutput {
int mBackupWriter;
public static final int OP_UPDATE = 1;
public static final int OP_DELETE = 2;
/** @hide */
public BackupDataOutput(FileDescriptor fd) {
if (fd == null) throw new NullPointerException();
@@ -71,6 +68,7 @@ public class BackupDataOutput {
}
}
/** @hide */
public void setKeyPrefix(String keyPrefix) {
setKeyPrefix_native(mBackupWriter, keyPrefix);
}