diff options
author | Joe Onorato <joeo@google.com> | 2010-09-16 16:59:37 -0400 |
---|---|---|
committer | Joe Onorato <joeo@google.com> | 2010-09-16 17:00:42 -0400 |
commit | b01e10c5bc0a29d1b0da96783b6d1582baeb2af2 (patch) | |
tree | 056c516743c1645138a8f51a063e315209171623 /drm | |
parent | 15f0a79a81fd18211603587bcd46eee0e37ced4d (diff) | |
download | frameworks_base-b01e10c5bc0a29d1b0da96783b6d1582baeb2af2.zip frameworks_base-b01e10c5bc0a29d1b0da96783b6d1582baeb2af2.tar.gz frameworks_base-b01e10c5bc0a29d1b0da96783b6d1582baeb2af2.tar.bz2 |
There is no @note javadoc tag.
Change-Id: I4bb4e0be518b01f2a81d870ff4ec9da81555afbd
Diffstat (limited to 'drm')
-rw-r--r-- | drm/java/android/drm/DrmManagerClient.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drm/java/android/drm/DrmManagerClient.java b/drm/java/android/drm/DrmManagerClient.java index 9ee597c..7ec70da 100644 --- a/drm/java/android/drm/DrmManagerClient.java +++ b/drm/java/android/drm/DrmManagerClient.java @@ -213,12 +213,12 @@ public class DrmManagerClient { * Save DRM rights to specified rights path * and make association with content path. * + * <p class="note">In case of OMA or WM-DRM, rightsPath and contentPath could be null.</p> + * * @param drmRights DrmRights to be saved * @param rightsPath File path where rights to be saved * @param contentPath File path where content was saved * @throws IOException if failed to save rights information in the given path - * - * @note In case of OMA or WM-DRM, rightsPath and contentPath could be null */ public void saveRights( DrmRights drmRights, String rightsPath, String contentPath) throws IOException { @@ -256,9 +256,9 @@ public class DrmManagerClient { * @param path Path of the content to be handled * @param mimeType Mimetype of the object to be handled * @return - * true - if the given mimeType or path can be handled - * false - cannot be handled. - * @note false will be return in case the state is uninitialized + * true - if the given mimeType or path can be handled. + * false - cannot be handled. false will be returned in case + * the state is uninitialized */ public boolean canHandle(String path, String mimeType) { if ((null == path || path.equals("")) && (null == mimeType || mimeType.equals(""))) { |