Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 16f43495 authored by Brad Ebinger's avatar Brad Ebinger Committed by android-build-merger
Browse files

Merge "Fix ImsMmTelManager docs to use annotations" am: 63df8520 am: 773209c5

am: 60e14152

Change-Id: Id2887350169f55b02c2a7aa67f63e20dbd8792da
parents 71d55428 60e14152
Loading
Loading
Loading
Loading
+9 −12
Original line number Diff line number Diff line
@@ -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) {
        }

        /**