OSDN Git Service

Fix dependencies of packages that target earlier releases
[android-x86/packages-apps-Eleven.git] / src / org / lineageos / eleven / sectionadapter / SectionListContainer.java
1 /*
2 * Copyright (C) 2014 The CyanogenMod 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 package com.cyanogenmod.eleven.sectionadapter;
17
18 import com.cyanogenmod.eleven.utils.SectionCreatorUtils;
19
20 import java.util.List;
21 import java.util.TreeMap;
22
23 /**
24  * Simple Container that contains a list of T items as well as the map of section information
25  * @param <T> the type of item that the list contains
26  */
27 public class SectionListContainer<T> {
28     public TreeMap<Integer, SectionCreatorUtils.Section> mSections;
29     public List<T> mListResults;
30
31     public SectionListContainer(final TreeMap<Integer, SectionCreatorUtils.Section> sections,
32                                 final List<T> results) {
33         mSections = sections;
34         mListResults = results;
35     }
36 }