Merge "Fix ImsMmTelManager docs to use annotations"

This commit is contained in:
Brad Ebinger
2019-10-10 20:56:31 +00:00
committed by Gerrit Code Review

View File

@@ -183,19 +183,17 @@ public class ImsMmTelManager {
/** /**
* Notifies the framework when the IMS Provider is registered to the IMS network. * Notifies the framework when the IMS Provider is registered to the IMS network.
* *
* @param imsTransportType the radio access technology. Valid values are defined in * @param imsTransportType the radio access technology.
* {@link android.telephony.AccessNetworkConstants.TransportType}.
*/ */
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. * 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 * @param imsTransportType the radio access technology.
* {@link android.telephony.AccessNetworkConstants.TransportType}.
*/ */
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, * A failure has occurred when trying to handover registration to another technology type.
* defined in {@link android.telephony.AccessNetworkConstants.TransportType}
* *
* @param imsTransportType The * @param imsTransportType The transport type that has failed to handover registration to.
* {@link android.telephony.AccessNetworkConstants.TransportType}
* transport type that has failed to handover registration to.
* @param info A {@link ImsReasonInfo} that identifies the reason for failure. * @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) {
} }
/** /**