diff options
author | Santos Cordon <santoscordon@google.com> | 2015-06-25 16:41:48 -0700 |
---|---|---|
committer | Santos Cordon <santoscordon@google.com> | 2015-06-29 16:17:47 -0700 |
commit | 895d4b8f63389b79974dfd3e36f1ab10b5ceb4dc (patch) | |
tree | fd649529d166a65ea8418ddea111417d80d66b57 /telecomm/java/android/telecom/PhoneAccount.java | |
parent | 435a1dfbd67371849c60ecd46df1d82a0f496cd8 (diff) | |
download | frameworks_base-895d4b8f63389b79974dfd3e36f1ab10b5ceb4dc.zip frameworks_base-895d4b8f63389b79974dfd3e36f1ab10b5ceb4dc.tar.gz frameworks_base-895d4b8f63389b79974dfd3e36f1ab10b5ceb4dc.tar.bz2 |
Telecom API council changes.
- adding more javadocs.
- fixing javadoc on isEnabled
- renaming to CONFIGURE_PHONE_ACCOUNT
Bug: 21573551
Change-Id: Ice035b8573a08ea18181a73c9e9a462520a934f1
Diffstat (limited to 'telecomm/java/android/telecom/PhoneAccount.java')
-rw-r--r-- | telecomm/java/android/telecom/PhoneAccount.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/telecomm/java/android/telecom/PhoneAccount.java b/telecomm/java/android/telecom/PhoneAccount.java index a25d327..df6fa2e 100644 --- a/telecomm/java/android/telecom/PhoneAccount.java +++ b/telecomm/java/android/telecom/PhoneAccount.java @@ -412,7 +412,7 @@ public final class PhoneAccount implements Parcelable { * bit mask. * * @param capability The capabilities to check. - * @return {@code True} if the phone account has the capability. + * @return {@code true} if the phone account has the capability. */ public boolean hasCapabilities(int capability) { return (mCapabilities & capability) == capability; @@ -455,9 +455,10 @@ public final class PhoneAccount implements Parcelable { } /** - * Indicates whether the user has enabled this phone account or not {@code PhoneAccounts}. + * Indicates whether the user has enabled this {@code PhoneAccount} or not. This value is only + * populated for {@code PhoneAccount}s returned by {@link TelecomManager#getPhoneAccount}. * - * @return The {@code true} if the account is enabled by the user, {@code false} otherwise. + * @return {@code true} if the account is enabled by the user, {@code false} otherwise. */ public boolean isEnabled() { return mIsEnabled; @@ -468,7 +469,7 @@ public final class PhoneAccount implements Parcelable { * scheme. * * @param uriScheme The URI scheme to check. - * @return {@code True} if the {@code PhoneAccount} supports calls to/from addresses with the + * @return {@code true} if the {@code PhoneAccount} supports calls to/from addresses with the * specified URI scheme. */ public boolean supportsUriScheme(String uriScheme) { |