1 /* 2 * Copyright (C) 2018 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.settings.panel; 18 19 import android.content.Intent; 20 import android.net.Uri; 21 22 import com.android.settingslib.core.instrumentation.Instrumentable; 23 24 import java.util.List; 25 26 /** 27 * Represents the data class needed to create a Settings Panel. See {@link PanelFragment}. 28 */ 29 public interface PanelContent extends Instrumentable { 30 31 /** 32 * @return a string for the title of the Panel. 33 */ getTitle()34 CharSequence getTitle(); 35 36 /** 37 * @return an ordered list of the Slices to be displayed in the Panel. The first item in the 38 * list is shown on top of the Panel. 39 */ getSlices()40 List<Uri> getSlices(); 41 42 43 /** 44 * @return an {@link Intent} to the full content in Settings that is summarized by the Panel. 45 * 46 * <p> 47 * For example, for the connectivity panel you would intent to the Network & Internet page. 48 * </p> 49 */ getSeeMoreIntent()50 Intent getSeeMoreIntent(); 51 } 52