/* * Copyright (C) 2015 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. */ package com.android.documentsui.dirlist; import android.view.ViewGroup; import com.android.documentsui.base.EventListener; import com.android.documentsui.Model.Update; import com.android.documentsui.testing.TestEventListener; import java.util.ArrayList; import java.util.List; /** * A skeletal {@link DocumentsAdapter} test double. */ public class TestDocumentsAdapter extends DocumentsAdapter { List mModelIds = new ArrayList<>(); final TestEventListener mModelListener = new TestEventListener<>(); public TestDocumentsAdapter(List modelIds) { mModelIds = modelIds; } @Override EventListener getModelUpdateListener() { return mModelListener; } @Override public List getModelIds() { return mModelIds; } @Override public void onItemSelectionChanged(String id) { } @Override public String getModelId(int position) { return mModelIds.get(position); } @Override public DocumentHolder onCreateViewHolder(ViewGroup parent, int viewType) { throw new UnsupportedOperationException(); } @Override public void onBindViewHolder(DocumentHolder holder, int position) { throw new UnsupportedOperationException(); } @Override public int getItemCount() { return mModelIds.size(); } public void updateTestModelIds(List modelIds) { mModelIds = modelIds; notifyDataSetChanged(); } }