diff options
| author | 2019-10-10 14:35:18 -0700 | |
|---|---|---|
| committer | 2019-10-10 14:35:18 -0700 | |
| commit | 16f43495d62cbb07d06759fa67dad2b791c8911c (patch) | |
| tree | d742e0459ff1d62c8d64935185e7141321ffda88 | |
| parent | 71d55428c9b942f1f029ed1702ff01896d980ceb (diff) | |
| parent | 60e141526d42522234f261af2d65d67cae7d5ffd (diff) | |
Merge "Fix ImsMmTelManager docs to use annotations" am: 63df8520ff am: 773209c5d2
am: 60e141526d
Change-Id: Id2887350169f55b02c2a7aa67f63e20dbd8792da
| -rw-r--r-- | telephony/java/android/telephony/ims/ImsMmTelManager.java | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/telephony/java/android/telephony/ims/ImsMmTelManager.java b/telephony/java/android/telephony/ims/ImsMmTelManager.java index a1a7fcc5dd51..2fad8479178e 100644 --- a/telephony/java/android/telephony/ims/ImsMmTelManager.java +++ b/telephony/java/android/telephony/ims/ImsMmTelManager.java @@ -183,19 +183,17 @@ public class ImsMmTelManager { /** * Notifies the framework when the IMS Provider is registered to the IMS network. * - * @param imsTransportType the radio access technology. Valid values are defined in - * {@link android.telephony.AccessNetworkConstants.TransportType}. + * @param imsTransportType the radio access technology. */ - public void onRegistered(int imsTransportType) { + public void onRegistered(@AccessNetworkConstants.TransportType int imsTransportType) { } /** * Notifies the framework when the IMS Provider is trying to register the IMS network. * - * @param imsTransportType the radio access technology. Valid values are defined in - * {@link android.telephony.AccessNetworkConstants.TransportType}. + * @param imsTransportType the radio access technology. */ - public void onRegistering(int imsTransportType) { + public void onRegistering(@AccessNetworkConstants.TransportType int imsTransportType) { } /** @@ -207,15 +205,14 @@ public class ImsMmTelManager { } /** - * A failure has occurred when trying to handover registration to another technology type, - * defined in {@link android.telephony.AccessNetworkConstants.TransportType} + * A failure has occurred when trying to handover registration to another technology type. * - * @param imsTransportType The - * {@link android.telephony.AccessNetworkConstants.TransportType} - * transport type that has failed to handover registration to. + * @param imsTransportType The transport type that has failed to handover registration to. * @param info A {@link ImsReasonInfo} that identifies the reason for failure. */ - public void onTechnologyChangeFailed(int imsTransportType, @Nullable ImsReasonInfo info) { + public void onTechnologyChangeFailed( + @AccessNetworkConstants.TransportType int imsTransportType, + @Nullable ImsReasonInfo info) { } /** |