diff options
author | Romain Guy <romainguy@android.com> | 2010-03-31 21:09:19 -0700 |
---|---|---|
committer | Romain Guy <romainguy@android.com> | 2010-03-31 21:09:19 -0700 |
commit | feb4fb9682a16defa0a0e7a999096bc891cd1c62 (patch) | |
tree | c396c64ee92983f481473e8db1ca7dff68cf0093 /core/java/android/widget | |
parent | ec1ca4200c8df6b62f9289b8cccc82022d8877c9 (diff) | |
download | frameworks_base-feb4fb9682a16defa0a0e7a999096bc891cd1c62.zip frameworks_base-feb4fb9682a16defa0a0e7a999096bc891cd1c62.tar.gz frameworks_base-feb4fb9682a16defa0a0e7a999096bc891cd1c62.tar.bz2 |
Fix the build, really
Change-Id: Id5e00cf7eb822dabb0b2b95b541855871ff0fe07
Diffstat (limited to 'core/java/android/widget')
-rw-r--r-- | core/java/android/widget/Adapters.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/core/java/android/widget/Adapters.java b/core/java/android/widget/Adapters.java index 1a2c81e..f914cee 100644 --- a/core/java/android/widget/Adapters.java +++ b/core/java/android/widget/Adapters.java @@ -73,14 +73,14 @@ import static com.android.internal.R.*; * each item of the adapter. This attribute is mandatory.</li> * <li><code>android:selection</code>: Selection expression, used when the * <code>android:uri</code> attribute is defined or when the adapter is loaded with - * {@link android.widget.Adapters#loadCursorAdapter(android.content.Context, int, String, Object...)}. + * {@link android.widget.Adapters#loadCursorAdapter(android.content.Context, int, String, Object[])}. * This attribute is optional.</li> * <li><code>android:sortOrder</code>: Sort expression, used when the * <code>android:uri</code> attribute is defined or when the adapter is loaded with - * {@link android.widget.Adapters#loadCursorAdapter(android.content.Context, int, String, Object...)}. + * {@link android.widget.Adapters#loadCursorAdapter(android.content.Context, int, String, Object[])}. * This attribute is optional.</li> * <li><code>android:uri</code>: URI of the content provider to query to retrieve a cursor. - * Specifying this attribute is equivalent to calling {@link android.widget.Adapters#loadCursorAdapter(android.content.Context, int, String, Object...)}. + * Specifying this attribute is equivalent to calling {@link android.widget.Adapters#loadCursorAdapter(android.content.Context, int, String, Object[])}. * If you call this method, the value of the XML attribute is ignored. This attribute is * optional.</li> * </ul> @@ -220,7 +220,7 @@ import static com.android.internal.R.*; * <h3>Related APIs</h3> * <ul> * <li>{@link android.widget.Adapters#loadAdapter(android.content.Context, int, Object[])}</li> - * <li>{@link android.widget.Adapters#loadCursorAdapter(android.content.Context, int, android.database.Cursor, Object...)}</li> + * <li>{@link android.widget.Adapters#loadCursorAdapter(android.content.Context, int, android.database.Cursor, Object[])}</li> * <li>{@link android.widget.Adapters#loadCursorAdapter(android.content.Context, int, String, Object[])}</li> * <li>{@link android.widget.Adapters.CursorBinder}</li> * <li>{@link android.widget.Adapters.CursorTransformation}</li> @@ -389,7 +389,7 @@ public class Adapters { * * @see android.content.ContentProvider * @see android.widget.CursorAdapter - * @see #loadAdapter(android.content.Context, int, Object...) + * @see #loadAdapter(android.content.Context, int, Object[]) */ public static CursorAdapter loadCursorAdapter(Context context, int id, String uri, Object... parameters) { @@ -427,7 +427,7 @@ public class Adapters { * @see android.content.ContentProvider * @see android.widget.CursorAdapter * @see android.database.Cursor - * @see #loadAdapter(android.content.Context, int, Object...) + * @see #loadAdapter(android.content.Context, int, Object[]) */ public static CursorAdapter loadCursorAdapter(Context context, int id, Cursor cursor, Object... parameters) { @@ -458,8 +458,8 @@ public class Adapters { * * @return An adapter instance. * - * @see #loadCursorAdapter(android.content.Context, int, android.database.Cursor, Object...) - * @see #loadCursorAdapter(android.content.Context, int, String, Object...) + * @see #loadCursorAdapter(android.content.Context, int, android.database.Cursor, Object[]) + * @see #loadCursorAdapter(android.content.Context, int, String, Object[]) */ public static BaseAdapter loadAdapter(Context context, int id, Object... parameters) { final BaseAdapter adapter = loadAdapter(context, id, null, (Object[]) null); |