diff options
author | Fred Quintana <fredq@google.com> | 2009-10-05 14:21:12 -0700 |
---|---|---|
committer | Fred Quintana <fredq@google.com> | 2009-10-06 11:51:19 -0700 |
commit | 5bba632d877c2878384ff21566c8eb6a1a22f37b (patch) | |
tree | e8bd6afd4bb1df723420de4a6e7f17ab3a253427 /core/java/android/content/ContentResolver.java | |
parent | 5163cd6d1cb664977eb4473b98657c7e92ae430e (diff) | |
download | frameworks_base-5bba632d877c2878384ff21566c8eb6a1a22f37b.zip frameworks_base-5bba632d877c2878384ff21566c8eb6a1a22f37b.tar.gz frameworks_base-5bba632d877c2878384ff21566c8eb6a1a22f37b.tar.bz2 |
- hide Entity and all its references
- remove updateEntity and insertEntity, since they are not
used
- add the RawContacts.Entity class, which is used in lieu of the
android.content.Entity
Diffstat (limited to 'core/java/android/content/ContentResolver.java')
-rw-r--r-- | core/java/android/content/ContentResolver.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/java/android/content/ContentResolver.java b/core/java/android/content/ContentResolver.java index c9edc41..c4b0807 100644 --- a/core/java/android/content/ContentResolver.java +++ b/core/java/android/content/ContentResolver.java @@ -218,6 +218,7 @@ public abstract class ContentResolver { /** * EntityIterator wrapper that releases the associated ContentProviderClient when the * iterator is closed. + * @hide */ private class EntityIteratorWrapper implements EntityIterator { private final EntityIterator mInner; @@ -283,6 +284,7 @@ public abstract class ContentResolver { * @throws RemoteException thrown if a RemoteException is encountered while attempting * to communicate with a remote provider. * @throws IllegalArgumentException thrown if there is no provider that matches the uri + * @hide */ public final EntityIterator queryEntities(Uri uri, String selection, String[] selectionArgs, String sortOrder) throws RemoteException { |