Merge "Add AbstractCursor.getNotificationUri."

This commit is contained in:
Makoto Onuki
2010-09-15 13:34:05 -07:00
committed by Android (Google) Code Review
2 changed files with 15 additions and 0 deletions

View File

@@ -60708,6 +60708,17 @@
<parameter name="column" type="int">
</parameter>
</method>
<method name="getNotificationUri"
return="android.net.Uri"
abstract="false"
native="false"
synchronized="false"
static="false"
final="false"
deprecated="not deprecated"
visibility="public"
>
</method>
<method name="getPosition"
return="int"
abstract="false"

View File

@@ -374,6 +374,10 @@ public abstract class AbstractCursor implements CrossProcessCursor {
}
}
public Uri getNotificationUri() {
return mNotifyUri;
}
public boolean getWantsAllOnMoveCalls() {
return false;
}