OSDN Git Service

Improve javadoc for PRESENTATION_ constants.
authorSantos Cordon <santoscordon@google.com>
Thu, 14 May 2015 01:47:38 +0000 (18:47 -0700)
committerSantos Cordon <santoscordon@google.com>
Thu, 14 May 2015 02:09:47 +0000 (19:09 -0700)
Bug: 21089678
Change-Id: I045fd71a30c75c213dd5c0c64ded983ea5e5d866

telecomm/java/android/telecom/TelecomManager.java

index b2c036c..c8ed2b0 100644 (file)
@@ -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";