summaryrefslogtreecommitdiffstats
path: root/core/java
diff options
context:
space:
mode:
Diffstat (limited to 'core/java')
-rw-r--r--core/java/android/net/Downloads.java11
1 files changed, 7 insertions, 4 deletions
diff --git a/core/java/android/net/Downloads.java b/core/java/android/net/Downloads.java
index a794af2..07ee9e1 100644
--- a/core/java/android/net/Downloads.java
+++ b/core/java/android/net/Downloads.java
@@ -296,21 +296,24 @@ public final class Downloads {
}
/**
- * @pending
+ * The column for the id in the Cursor returned by
+ * {@link #getProgressCursor()}
*/
public static final int getProgressColumnId() {
return 0;
}
/**
- * @pending
+ * The column for the current byte count in the Cursor returned by
+ * {@link #getProgressCursor()}
*/
public static final int getProgressColumnCurrentBytes() {
return 1;
}
/**
- * @pending
+ * The column for the total byte count in the Cursor returned by
+ * {@link #getProgressCursor()}
*/
public static final int getProgressColumnTotalBytes() {
return 2;
@@ -324,7 +327,7 @@ public final class Downloads {
};
/**
- * @pending
+ * Returns a Cursor representing the progress of the download identified by the ID.
*/
public static final Cursor getProgressCursor(Context context, long id) {
Uri downloadUri = Uri.withAppendedPath(android.provider.Downloads.Impl.CONTENT_URI,