diff options
| author | 2011-09-13 00:17:08 -0700 | |
|---|---|---|
| committer | 2011-09-13 16:24:45 -0700 | |
| commit | 48c5fb14933cba4dcf6ba401b895e59bac4a8420 (patch) | |
| tree | 0b9e5715ba5f0a0c674575ea27a04576cdb8b585 | |
| parent | 651cdfcbac6245f570475991588ddc2d30265e8d (diff) | |
API review: Metadata class not used.
The Metadata class doesn't actually seem to be used with anything
in the SDK, and the API probably needs some work, so hide it.
Change-Id: Ifecf49130b90cbb4c588ad8104f1e7957978f789
| -rw-r--r-- | api/current.txt | 10 | ||||
| -rw-r--r-- | media/java/android/media/Metadata.java | 2 |
2 files changed, 2 insertions, 10 deletions
diff --git a/api/current.txt b/api/current.txt index 3890aac21d31..69e1cd55cb45 100644 --- a/api/current.txt +++ b/api/current.txt @@ -10869,16 +10869,6 @@ package android.media { method public abstract void onScanCompleted(java.lang.String, android.net.Uri); } - public class Metadata { - method public boolean getBoolean(int); - method public boolean has(int); - method public java.util.Set<java.lang.Integer> keySet(); - field public static final int PAUSE_AVAILABLE = 1; // 0x1 - field public static final int SEEK_AVAILABLE = 4; // 0x4 - field public static final int SEEK_BACKWARD_AVAILABLE = 2; // 0x2 - field public static final int SEEK_FORWARD_AVAILABLE = 3; // 0x3 - } - public class RemoteControlClient { ctor public RemoteControlClient(android.content.ComponentName); ctor public RemoteControlClient(android.content.ComponentName, android.os.Looper); diff --git a/media/java/android/media/Metadata.java b/media/java/android/media/Metadata.java index 591a8b92d684..b56665307f95 100644 --- a/media/java/android/media/Metadata.java +++ b/media/java/android/media/Metadata.java @@ -39,6 +39,8 @@ import java.util.TimeZone; The caller is expected to know the type of the metadata and call the right get* method to fetch its value. + + @hide */ public class Metadata { |