@@ -271,8 +271,7 @@ public void freeLastRow(){
271271 * Returns true if the field at the specified row and column index
272272 * has type {@link Cursor#FIELD_TYPE_NULL}.
273273 *
274- * @param row The zero-based row index, relative to the cursor window's
275- * start position ({@link #getStartPosition()}).
274+ * @param row The zero-based row index.
276275 * @param column The zero-based column index.
277276 * @return True if the field has type {@link Cursor#FIELD_TYPE_NULL}.
278277 * @deprecated Use {@link #getType(int, int)} instead.
@@ -286,8 +285,7 @@ public boolean isNull(int row, int column) {
286285 * Returns true if the field at the specified row and column index
287286 * has type {@link Cursor#FIELD_TYPE_BLOB} or {@link Cursor#FIELD_TYPE_NULL}.
288287 *
289- * @param row The zero-based row index, relative to the cursor window's
290- * start position ({@link #getStartPosition()}).
288+ * @param row The zero-based row index.
291289 * @param column The zero-based column index.
292290 * @return True if the field has type {@link Cursor#FIELD_TYPE_BLOB} or
293291 * {@link Cursor#FIELD_TYPE_NULL}.
@@ -303,8 +301,7 @@ public boolean isBlob(int row, int column) {
303301 * Returns true if the field at the specified row and column index
304302 * has type {@link Cursor#FIELD_TYPE_INTEGER}.
305303 *
306- * @param row The zero-based row index, relative to the cursor window's
307- * start position ({@link #getStartPosition()}).
304+ * @param row The zero-based row index.
308305 * @param column The zero-based column index.
309306 * @return True if the field has type {@link Cursor#FIELD_TYPE_INTEGER}.
310307 * @deprecated Use {@link #getType(int, int)} instead.
@@ -318,8 +315,7 @@ public boolean isLong(int row, int column) {
318315 * Returns true if the field at the specified row and column index
319316 * has type {@link Cursor#FIELD_TYPE_FLOAT}.
320317 *
321- * @param row The zero-based row index, relative to the cursor window's
322- * start position ({@link #getStartPosition()}).
318+ * @param row The zero-based row index.
323319 * @param column The zero-based column index.
324320 * @return True if the field has type {@link Cursor#FIELD_TYPE_FLOAT}.
325321 * @deprecated Use {@link #getType(int, int)} instead.
@@ -333,8 +329,7 @@ public boolean isFloat(int row, int column) {
333329 * Returns true if the field at the specified row and column index
334330 * has type {@link Cursor#FIELD_TYPE_STRING} or {@link Cursor#FIELD_TYPE_NULL}.
335331 *
336- * @param row The zero-based row index, relative to the cursor window's
337- * start position ({@link #getStartPosition()}).
332+ * @param row The zero-based row index.
338333 * @param column The zero-based column index.
339334 * @return True if the field has type {@link Cursor#FIELD_TYPE_STRING}
340335 * or {@link Cursor#FIELD_TYPE_NULL}.
@@ -359,8 +354,7 @@ public boolean isString(int row, int column) {
359354 * </ul>
360355 * </p>
361356 *
362- * @param row The zero-based row index, relative to the cursor window's
363- * start position ({@link #getStartPosition()}).
357+ * @param row The zero-based row index.
364358 * @param column The zero-based column index.
365359 * @return The field type.
366360 */
@@ -390,8 +384,7 @@ public int getType(int row, int column) {
390384 * </ul>
391385 * </p>
392386 *
393- * @param row The zero-based row index, relative to the cursor window's
394- * start position ({@link #getStartPosition()}).
387+ * @param row The zero-based row index.
395388 * @param column The zero-based column index.
396389 * @return The value of the field as a byte array.
397390 */
@@ -426,8 +419,7 @@ public byte[] getBlob(int row, int column) {
426419 * </ul>
427420 * </p>
428421 *
429- * @param row The zero-based row index, relative to the cursor window's
430- * start position ({@link #getStartPosition()}).
422+ * @param row The zero-based row index.
431423 * @param column The zero-based column index.
432424 * @return The value of the field as a string.
433425 */
@@ -465,8 +457,7 @@ public String getString(int row, int column) {
465457 * </ul>
466458 * </p>
467459 *
468- * @param row The zero-based row index, relative to the cursor window's
469- * start position ({@link #getStartPosition()}).
460+ * @param row The zero-based row index.
470461 * @param column The zero-based column index.
471462 * @param buffer The {@link CharArrayBuffer} to hold the string. It is automatically
472463 * resized if the requested string is larger than the buffer's current capacity.
@@ -501,8 +492,7 @@ public void copyStringToBuffer(int row, int column, CharArrayBuffer buffer) {
501492 * </ul>
502493 * </p>
503494 *
504- * @param row The zero-based row index, relative to the cursor window's
505- * start position ({@link #getStartPosition()}).
495+ * @param row The zero-based row index.
506496 * @param column The zero-based column index.
507497 * @return The value of the field as a <code>long</code>.
508498 */
@@ -534,8 +524,7 @@ public long getLong(int row, int column) {
534524 * </ul>
535525 * </p>
536526 *
537- * @param row The zero-based row index, relative to the cursor window's
538- * start position ({@link #getStartPosition()}).
527+ * @param row The zero-based row index.
539528 * @param column The zero-based column index.
540529 * @return The value of the field as a <code>double</code>.
541530 */
@@ -556,8 +545,7 @@ public double getDouble(int row, int column) {
556545 * result to <code>short</code>.
557546 * </p>
558547 *
559- * @param row The zero-based row index, relative to the cursor window's
560- * start position ({@link #getStartPosition()}).
548+ * @param row The zero-based row index.
561549 * @param column The zero-based column index.
562550 * @return The value of the field as a <code>short</code>.
563551 */
@@ -573,8 +561,7 @@ public short getShort(int row, int column) {
573561 * result to <code>int</code>.
574562 * </p>
575563 *
576- * @param row The zero-based row index, relative to the cursor window's
577- * start position ({@link #getStartPosition()}).
564+ * @param row The zero-based row index.
578565 * @param column The zero-based column index.
579566 * @return The value of the field as an <code>int</code>.
580567 */
@@ -590,8 +577,7 @@ public int getInt(int row, int column) {
590577 * result to <code>float</code>.
591578 * </p>
592579 *
593- * @param row The zero-based row index, relative to the cursor window's
594- * start position ({@link #getStartPosition()}).
580+ * @param row The zero-based row index.
595581 * @param column The zero-based column index.
596582 * @return The value of the field as an <code>float</code>.
597583 */
@@ -603,8 +589,7 @@ public float getFloat(int row, int column) {
603589 * Copies a byte array into the field at the specified row and column index.
604590 *
605591 * @param value The value to store.
606- * @param row The zero-based row index, relative to the cursor window's
607- * start position ({@link #getStartPosition()}).
592+ * @param row The zero-based row index.
608593 * @param column The zero-based column index.
609594 * @return True if successful.
610595 */
@@ -621,8 +606,7 @@ public boolean putBlob(byte[] value, int row, int column) {
621606 * Copies a string into the field at the specified row and column index.
622607 *
623608 * @param value The value to store.
624- * @param row The zero-based row index, relative to the cursor window's
625- * start position ({@link #getStartPosition()}).
609+ * @param row The zero-based row index.
626610 * @param column The zero-based column index.
627611 * @return True if successful.
628612 */
@@ -639,8 +623,7 @@ public boolean putString(String value, int row, int column) {
639623 * Puts a long integer into the field at the specified row and column index.
640624 *
641625 * @param value The value to store.
642- * @param row The zero-based row index, relative to the cursor window's
643- * start position ({@link #getStartPosition()}).
626+ * @param row The zero-based row index.
644627 * @param column The zero-based column index.
645628 * @return True if successful.
646629 */
@@ -658,8 +641,7 @@ public boolean putLong(long value, int row, int column) {
658641 * specified row and column index.
659642 *
660643 * @param value The value to store.
661- * @param row The zero-based row index, relative to the cursor window's
662- * start position ({@link #getStartPosition()}).
644+ * @param row The zero-based row index.
663645 * @param column The zero-based column index.
664646 * @return True if successful.
665647 */
@@ -675,8 +657,7 @@ public boolean putDouble(double value, int row, int column) {
675657 /**
676658 * Puts a null value into the field at the specified row and column index.
677659 *
678- * @param row The zero-based row index, relative to the cursor window's
679- * start position ({@link #getStartPosition()}).
660+ * @param row The zero-based row index.
680661 * @param column The zero-based column index.
681662 * @return True if successful.
682663 */
0 commit comments