From d3ad696b1daaa6c92d8fa268c81ce220ed1d9ffc Mon Sep 17 00:00:00 2001 From: Joe Onorato Date: Thu, 16 Sep 2010 13:38:25 -0400 Subject: Fix the rest of the javadoc warnings. Change-Id: Ifbf422a2eb177858813d118f03ceddcd807e73b4 --- core/java/android/content/ContentProviderOperation.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'core/java/android/content/ContentProviderOperation.java') diff --git a/core/java/android/content/ContentProviderOperation.java b/core/java/android/content/ContentProviderOperation.java index 7945f3f8ee98..12e9babb323a 100644 --- a/core/java/android/content/ContentProviderOperation.java +++ b/core/java/android/content/ContentProviderOperation.java @@ -272,13 +272,14 @@ public class ContentProviderOperation implements Parcelable { * The ContentValues back references are represented as a ContentValues object where the * key refers to a column and the value is an index of the back reference whose * valued should be associated with the column. + *

+ * This is intended to be a private method but it is exposed for + * unit testing purposes * @param backRefs an array of previous results * @param numBackRefs the number of valid previous results in backRefs * @return the ContentValues that should be used in this operation application after * expansion of back references. This can be called if either mValues or mValuesBackReferences * is null - * @VisibleForTesting this is intended to be a private method but it is exposed for - * unit testing purposes */ public ContentValues resolveValueBackReferences( ContentProviderResult[] backRefs, int numBackRefs) { @@ -308,13 +309,14 @@ public class ContentProviderOperation implements Parcelable { * the key is an index into the selection argument array (see {@link Builder#withSelection}) * and the value is the index of the previous result that should be used for that selection * argument array slot. + *

+ * This is intended to be a private method but it is exposed for + * unit testing purposes * @param backRefs an array of previous results * @param numBackRefs the number of valid previous results in backRefs * @return the ContentValues that should be used in this operation application after * expansion of back references. This can be called if either mValues or mValuesBackReferences * is null - * @VisibleForTesting this is intended to be a private method but it is exposed for - * unit testing purposes */ public String[] resolveSelectionArgsBackReferences( ContentProviderResult[] backRefs, int numBackRefs) { -- cgit v1.2.3