From ed723b4095828fd6e183b650390bc4725e15886f Mon Sep 17 00:00:00 2001 From: Mike Lockwood Date: Wed, 26 Jan 2011 15:57:07 -0800 Subject: [PATCH] Fix javadoc for MediaStore.Files.FileColumns constants BUG: 3370225 Change-Id: Ie793771b131031f8457859990dca7b6fb9ba47aa Signed-off-by: Mike Lockwood --- core/java/android/provider/MediaStore.java | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/core/java/android/provider/MediaStore.java b/core/java/android/provider/MediaStore.java index 82fe7dede98d9..4c1fb5b7cb2d1 100644 --- a/core/java/android/provider/MediaStore.java +++ b/core/java/android/provider/MediaStore.java @@ -375,12 +375,29 @@ public final class MediaStore { public static final String MEDIA_TYPE = "media_type"; /** - * Constants for MEDIA_TYPE + * Constant for the {@link #MEDIA_TYPE} column indicating that file + * is not an audio, image, video or playlist file. */ public static final int MEDIA_TYPE_NONE = 0; + + /** + * Constant for the {@link #MEDIA_TYPE} column indicating that file is an image file. + */ public static final int MEDIA_TYPE_IMAGE = 1; + + /** + * Constant for the {@link #MEDIA_TYPE} column indicating that file is an audio file. + */ public static final int MEDIA_TYPE_AUDIO = 2; + + /** + * Constant for the {@link #MEDIA_TYPE} column indicating that file is an video file. + */ public static final int MEDIA_TYPE_VIDEO = 3; + + /** + * Constant for the {@link #MEDIA_TYPE} column indicating that file is an playlist file. + */ public static final int MEDIA_TYPE_PLAYLIST = 4; } }