diff options
| author | Junda Liu <junda@google.com> | 2014-09-05 17:31:08 -0700 |
|---|---|---|
| committer | Junda Liu <junda@google.com> | 2014-09-09 17:50:09 -0700 |
| commit | 13e28bb9386a3eb579c457985f0324238f2bfe38 (patch) | |
| tree | e881b0bcc7a2ea3771cc8bd583989ad7fb3ab77c /telephony | |
| parent | d5adbec5271dca42d0f937b1c869601786cc2ad3 (diff) | |
| download | frameworks_base-13e28bb9386a3eb579c457985f0324238f2bfe38.zip frameworks_base-13e28bb9386a3eb579c457985f0324238f2bfe38.tar.gz frameworks_base-13e28bb9386a3eb579c457985f0324238f2bfe38.tar.bz2 | |
Add ForSubscriber suffix to APIs w/ subId argument.
Bug: b/17255752
Change-Id: I142d8961aa4c1fa074833f70c404c955caea0870
Diffstat (limited to 'telephony')
| -rw-r--r-- | telephony/java/android/telephony/TelephonyManager.java | 27 | ||||
| -rw-r--r-- | telephony/java/com/android/internal/telephony/ITelephony.aidl | 6 |
2 files changed, 17 insertions, 16 deletions
diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java index 164fc3c..d53be4f 100644 --- a/telephony/java/android/telephony/TelephonyManager.java +++ b/telephony/java/android/telephony/TelephonyManager.java @@ -1704,7 +1704,7 @@ public class TelephonyManager { * {@link android.Manifest.permission#READ_PHONE_STATE READ_PHONE_STATE} */ public String getLine1Number() { - return getLine1Number(getDefaultSubscription()); + return getLine1NumberForSubscriber(getDefaultSubscription()); } /** @@ -1717,7 +1717,7 @@ public class TelephonyManager { * @param subId whose phone number for line 1 is returned */ /** {@hide} */ - public String getLine1Number(long subId) { + public String getLine1NumberForSubscriber(long subId) { String number = null; try { number = getITelephony().getLine1NumberForDisplay(subId); @@ -1751,7 +1751,7 @@ public class TelephonyManager { * @param number The dialing number */ public void setLine1NumberForDisplay(String alphaTag, String number) { - setLine1NumberForDisplay(getDefaultSubscription(), alphaTag, number); + setLine1NumberForDisplayForSubscriber(getDefaultSubscription(), alphaTag, number); } /** @@ -1767,10 +1767,11 @@ public class TelephonyManager { * @param subId the subscriber that the alphatag and dialing number belongs to. * @param alphaTag alpha-tagging of the dailing nubmer * @param number The dialing number + * @hide */ - public void setLine1NumberForDisplay(long subId, String alphaTag, String number) { + public void setLine1NumberForDisplayForSubscriber(long subId, String alphaTag, String number) { try { - getITelephony().setLine1NumberForDisplay(subId, alphaTag, number); + getITelephony().setLine1NumberForDisplayForSubscriber(subId, alphaTag, number); } catch (RemoteException ex) { } catch (NullPointerException ex) { } @@ -1786,7 +1787,7 @@ public class TelephonyManager { * nobody seems to call this. */ public String getLine1AlphaTag() { - return getLine1AlphaTag(getDefaultSubscription()); + return getLine1AlphaTagForSubscriber(getDefaultSubscription()); } /** @@ -1800,7 +1801,7 @@ public class TelephonyManager { * nobody seems to call this. */ /** {@hide} */ - public String getLine1AlphaTag(long subId) { + public String getLine1AlphaTagForSubscriber(long subId) { String alphaTag = null; try { alphaTag = getITelephony().getLine1AlphaTagForDisplay(subId); @@ -3369,7 +3370,7 @@ public class TelephonyManager { * @hide */ public void enableSimplifiedNetworkSettings(boolean enable) { - enableSimplifiedNetworkSettings(getDefaultSubscription(), enable); + enableSimplifiedNetworkSettingsForSubscriber(getDefaultSubscription(), enable); } /** @@ -3384,9 +3385,9 @@ public class TelephonyManager { * @param enable true means enabling the simplified UI. * @hide */ - public void enableSimplifiedNetworkSettings(long subId, boolean enable) { + public void enableSimplifiedNetworkSettingsForSubscriber(long subId, boolean enable) { try { - getITelephony().enableSimplifiedNetworkSettings(subId, enable); + getITelephony().enableSimplifiedNetworkSettingsForSubscriber(subId, enable); } catch (RemoteException ex) { } catch (NullPointerException ex) { } @@ -3402,7 +3403,7 @@ public class TelephonyManager { * @hide */ public boolean getSimplifiedNetworkSettingsEnabled() { - return getSimplifiedNetworkSettingsEnabled(getDefaultSubscription()); + return getSimplifiedNetworkSettingsEnabledForSubscriber(getDefaultSubscription()); } /** @@ -3415,9 +3416,9 @@ public class TelephonyManager { * @return true if the simplified UI is enabled. * @hide */ - public boolean getSimplifiedNetworkSettingsEnabled(long subId) { + public boolean getSimplifiedNetworkSettingsEnabledForSubscriber(long subId) { try { - return getITelephony().getSimplifiedNetworkSettingsEnabled(subId); + return getITelephony().getSimplifiedNetworkSettingsEnabledForSubscriber(subId); } catch (RemoteException ex) { } catch (NullPointerException ex) { } diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index 5b280ff..fa9cad4 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -715,7 +715,7 @@ interface ITelephony { * @param subId for which the simplified UI should be enabled or disabled. * @param enable true means enabling the simplified UI. */ - void enableSimplifiedNetworkSettings(long subId, boolean enable); + void enableSimplifiedNetworkSettingsForSubscriber(long subId, boolean enable); /** * Get whether a simplified Mobile Network Settings UI is enabled. @@ -723,7 +723,7 @@ interface ITelephony { * @param subId for which the simplified UI should be enabled or disabled. * @return true if the simplified UI is enabled. */ - boolean getSimplifiedNetworkSettingsEnabled(long subId); + boolean getSimplifiedNetworkSettingsEnabledForSubscriber(long subId); /** * Set the phone number string and its alphatag for line 1 for display @@ -735,7 +735,7 @@ interface ITelephony { * @param alphaTag alpha-tagging of the dailing nubmer * @param number The dialing number */ - void setLine1NumberForDisplay(long subId, String alphaTag, String number); + void setLine1NumberForDisplayForSubscriber(long subId, String alphaTag, String number); /** * Returns the displayed dialing number string if it was set previously via |
