Fix documentation.

This commit is contained in:
Dianne Hackborn
2009-08-05 15:30:56 -07:00
parent 53c66b490a
commit d41ba666d1

View File

@@ -643,8 +643,8 @@ public final class MotionEvent implements Parcelable {
* @param pointerIndex Raw index of pointer to retrieve. Value may be from 0
* (the first pointer that is down) to {@link #getPointerCount()}-1.
*/
public final int getPointerId(int index) {
return mPointerIdentifiers[index];
public final int getPointerId(int pointerIndex) {
return mPointerIdentifiers[pointerIndex];
}
/**