Files
app_Settings/src/com/android/settings/network/telephony/TelephonyAvailabilityHandler.java
Bonian Chen 203f0fe89d [Settings] Code refactor - remove unused import lines
Remove some unused import lines within source code based on
https://source.android.com/setup/contribute/code-style

Bug: 182867979
Test: build pass
Change-Id: I76dbcfa9e5b435b2838401dfee15b12f472d07d0
2021-03-16 10:24:24 +00:00

39 lines
1.3 KiB
Java

/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Interface letting {@link TelephonyTogglePreferenceController and
* @link TelephonyBasePreferenceController} can handle availability status.
*/
package com.android.settings.network.telephony;
public interface TelephonyAvailabilityHandler {
/**
* Set availability status of preference controller to a fixed value.
* @param status is the given status. Which will be reported from
* {@link BasePreferenceController#getAvailabilityStatus()}
*/
void setAvailabilityStatus(int status);
/**
* Do not set availability, use
* {@link MobileNetworkUtils#getAvailability(Context, int, TelephonyAvailabilityCallback)}
* to get the availability.
*/
void unsetAvailabilityStatus();
}