summaryrefslogtreecommitdiffstats
path: root/telecomm
diff options
context:
space:
mode:
authorSantos Cordon <santoscordon@google.com>2015-05-13 18:47:38 -0700
committerSantos Cordon <santoscordon@google.com>2015-05-13 19:09:47 -0700
commited769ae5d2cc830714b0a05c1b4f794ff38c00b1 (patch)
treebc981d6d6bac35a184663ff9c93ad20cc1ee3252 /telecomm
parent90c66e3ded4a91613b0c1760ab2ef15e0d118a36 (diff)
downloadframeworks_base-ed769ae5d2cc830714b0a05c1b4f794ff38c00b1.zip
frameworks_base-ed769ae5d2cc830714b0a05c1b4f794ff38c00b1.tar.gz
frameworks_base-ed769ae5d2cc830714b0a05c1b4f794ff38c00b1.tar.bz2
Improve javadoc for PRESENTATION_ constants.
Bug: 21089678 Change-Id: I045fd71a30c75c213dd5c0c64ded983ea5e5d866
Diffstat (limited to 'telecomm')
-rw-r--r--telecomm/java/android/telecom/TelecomManager.java16
1 files changed, 12 insertions, 4 deletions
diff --git a/telecomm/java/android/telecom/TelecomManager.java b/telecomm/java/android/telecom/TelecomManager.java
index b2c036c..c8ed2b0 100644
--- a/telecomm/java/android/telecom/TelecomManager.java
+++ b/telecomm/java/android/telecom/TelecomManager.java
@@ -333,16 +333,24 @@ public class TelecomManager {
* displayed to the user.
*/
- /** Property is displayed normally. */
+ /**
+ * Indicates that the address or number of a call is allowed to be displayed for caller ID.
+ */
public static final int PRESENTATION_ALLOWED = 1;
- /** Property was blocked. */
+ /**
+ * Indicates that the address or number of a call is blocked by the other party.
+ */
public static final int PRESENTATION_RESTRICTED = 2;
- /** Presentation was not specified or is unknown. */
+ /**
+ * Indicates that the address or number of a call is not specified or known by the carrier.
+ */
public static final int PRESENTATION_UNKNOWN = 3;
- /** Property should be displayed as a pay phone. */
+ /**
+ * Indicates that the address or number of a call belongs to a pay phone.
+ */
public static final int PRESENTATION_PAYPHONE = 4;
private static final String TAG = "TelecomManager";