1/*
2 * Copyright (C) 2015 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
17package com.android.setupwizardlib.items;
18
19import android.support.v7.widget.RecyclerView;
20import android.view.View;
21
22import com.android.setupwizardlib.DividerItemDecoration;
23
24class ItemViewHolder extends RecyclerView.ViewHolder
25            implements DividerItemDecoration.DividedViewHolder {
26
27    private boolean mIsEnabled;
28    private IItem mItem;
29
30    ItemViewHolder(View itemView) {
31        super(itemView);
32    }
33
34    @Override
35    public boolean isDividerAllowedAbove() {
36        return mIsEnabled;
37    }
38
39    @Override
40    public boolean isDividerAllowedBelow() {
41        return mIsEnabled;
42    }
43
44    public void setEnabled(boolean isEnabled) {
45        mIsEnabled = isEnabled;
46        itemView.setClickable(isEnabled);
47        itemView.setEnabled(isEnabled);
48        itemView.setFocusable(isEnabled);
49    }
50
51    public void setItem(IItem item) {
52        mItem = item;
53    }
54
55    public IItem getItem() {
56        return mItem;
57    }
58}
59