@@ -495,7 +495,7 @@ public static String dumpCurrentRowToString(Cursor cursor) {
495495 *
496496 * @param cursor The cursor to read from
497497 * @param field The TEXT field to read
498- * @param values The {@link ContentValues} to put the value into, with the field as the key
498+ * @param values The ContentValues to put the value into, with the field as the key
499499 */
500500 public static void cursorStringToContentValues (Cursor cursor , String field ,
501501 ContentValues values ) {
@@ -520,7 +520,7 @@ public static void cursorStringToInsertHelper(Cursor cursor, String field,
520520 *
521521 * @param cursor The cursor to read from
522522 * @param field The TEXT field to read
523- * @param values The {@link ContentValues} to put the value into, with the field as the key
523+ * @param values The ContentValues to put the value into, with the field as the key
524524 * @param key The key to store the value with in the map
525525 */
526526 public static void cursorStringToContentValues (Cursor cursor , String field ,
@@ -533,7 +533,7 @@ public static void cursorStringToContentValues(Cursor cursor, String field,
533533 *
534534 * @param cursor The cursor to read from
535535 * @param field The INTEGER field to read
536- * @param values The {@link ContentValues} to put the value into, with the field as the key
536+ * @param values The ContentValues to put the value into, with the field as the key
537537 */
538538 public static void cursorIntToContentValues (Cursor cursor , String field , ContentValues values ) {
539539 cursorIntToContentValues (cursor , field , values , field );
@@ -544,7 +544,7 @@ public static void cursorIntToContentValues(Cursor cursor, String field, Content
544544 *
545545 * @param cursor The cursor to read from
546546 * @param field The INTEGER field to read
547- * @param values The {@link ContentValues} to put the value into, with the field as the key
547+ * @param values The ContentValues to put the value into, with the field as the key
548548 * @param key The key to store the value with in the map
549549 */
550550 public static void cursorIntToContentValues (Cursor cursor , String field , ContentValues values ,
@@ -562,7 +562,7 @@ public static void cursorIntToContentValues(Cursor cursor, String field, Content
562562 *
563563 * @param cursor The cursor to read from
564564 * @param field The INTEGER field to read
565- * @param values The {@link ContentValues} to put the value into, with the field as the key
565+ * @param values The ContentValues to put the value into, with the field as the key
566566 */
567567 public static void cursorLongToContentValues (Cursor cursor , String field , ContentValues values )
568568 {
@@ -574,7 +574,7 @@ public static void cursorLongToContentValues(Cursor cursor, String field, Conten
574574 *
575575 * @param cursor The cursor to read from
576576 * @param field The INTEGER field to read
577- * @param values The {@link ContentValues} to put the value into
577+ * @param values The ContentValues to put the value into
578578 * @param key The key to store the value with in the map
579579 */
580580 public static void cursorLongToContentValues (Cursor cursor , String field , ContentValues values ,
@@ -593,7 +593,7 @@ public static void cursorLongToContentValues(Cursor cursor, String field, Conten
593593 *
594594 * @param cursor The cursor to read from
595595 * @param field The REAL field to read
596- * @param values The {@link ContentValues} to put the value into
596+ * @param values The ContentValues to put the value into
597597 */
598598 public static void cursorDoubleToCursorValues (Cursor cursor , String field , ContentValues values )
599599 {
@@ -605,7 +605,7 @@ public static void cursorDoubleToCursorValues(Cursor cursor, String field, Conte
605605 *
606606 * @param cursor The cursor to read from
607607 * @param field The REAL field to read
608- * @param values The {@link ContentValues} to put the value into
608+ * @param values The ContentValues to put the value into
609609 * @param key The key to store the value with in the map
610610 */
611611 public static void cursorDoubleToContentValues (Cursor cursor , String field ,
@@ -622,7 +622,7 @@ public static void cursorDoubleToContentValues(Cursor cursor, String field,
622622 * Read the entire contents of a cursor row and store them in a ContentValues.
623623 *
624624 * @param cursor the cursor to read from.
625- * @param values the {@link ContentValues} to put the row into.
625+ * @param values the ContentValues to put the row into.
626626 */
627627 public static void cursorRowToContentValues (Cursor cursor , ContentValues values ) {
628628 AbstractWindowedCursor awc =
@@ -718,7 +718,7 @@ public static String stringForQuery(SQLiteStatement prog, String[] selectionArgs
718718 *
719719 * @param cursor The cursor to read from
720720 * @param column The column to read
721- * @param values The {@link ContentValues} to put the value into
721+ * @param values The ContentValues to put the value into
722722 */
723723 public static void cursorStringToContentValuesIfPresent (Cursor cursor , ContentValues values ,
724724 String column ) {
@@ -734,7 +734,7 @@ public static void cursorStringToContentValuesIfPresent(Cursor cursor, ContentVa
734734 *
735735 * @param cursor The cursor to read from
736736 * @param column The column to read
737- * @param values The {@link ContentValues} to put the value into
737+ * @param values The ContentValues to put the value into
738738 */
739739 public static void cursorLongToContentValuesIfPresent (Cursor cursor , ContentValues values ,
740740 String column ) {
@@ -750,7 +750,7 @@ public static void cursorLongToContentValuesIfPresent(Cursor cursor, ContentValu
750750 *
751751 * @param cursor The cursor to read from
752752 * @param column The column to read
753- * @param values The {@link ContentValues} to put the value into
753+ * @param values The ContentValues to put the value into
754754 */
755755 public static void cursorShortToContentValuesIfPresent (Cursor cursor , ContentValues values ,
756756 String column ) {
@@ -766,7 +766,7 @@ public static void cursorShortToContentValuesIfPresent(Cursor cursor, ContentVal
766766 *
767767 * @param cursor The cursor to read from
768768 * @param column The column to read
769- * @param values The {@link ContentValues} to put the value into
769+ * @param values The ContentValues to put the value into
770770 */
771771 public static void cursorIntToContentValuesIfPresent (Cursor cursor , ContentValues values ,
772772 String column ) {
@@ -782,7 +782,7 @@ public static void cursorIntToContentValuesIfPresent(Cursor cursor, ContentValue
782782 *
783783 * @param cursor The cursor to read from
784784 * @param column The column to read
785- * @param values The {@link ContentValues} to put the value into
785+ * @param values The ContentValues to put the value into
786786 */
787787 public static void cursorFloatToContentValuesIfPresent (Cursor cursor , ContentValues values ,
788788 String column ) {
@@ -798,7 +798,7 @@ public static void cursorFloatToContentValuesIfPresent(Cursor cursor, ContentVal
798798 *
799799 * @param cursor The cursor to read from
800800 * @param column The column to read
801- * @param values The {@link ContentValues} to put the value into
801+ * @param values The ContentValues to put the value into
802802 */
803803 public static void cursorDoubleToContentValuesIfPresent (Cursor cursor , ContentValues values ,
804804 String column ) {
0 commit comments