/* * Copyright (c) 2014. The Trustees of Indiana University. * * This version of the code is licensed under the MPL 2.0 Open Source license with additional * healthcare disclaimer. If the user is an entity intending to commercialize any application * that uses this code in a for-profit venture, please contact the copyright holder. */ package com.muzima.adapters.encounters; import android.content.Context; import android.view.LayoutInflater; import android.widget.LinearLayout; import com.muzima.adapters.ListAdapter; import com.muzima.api.model.Observation; import com.muzima.controller.ObservationController; import java.util.ArrayList; import java.util.List; public abstract class ObservationsAdapter extends ListAdapter<Observation> { private static final String TAG = "ObservationsAdapter"; protected ObservationController observationController; public ObservationsAdapter(Context context, int textViewResourceId,ObservationController observationController){ super(context, textViewResourceId); this.observationController=observationController; } protected abstract class ViewHolder { protected LayoutInflater inflater; List<LinearLayout> observationViewHolders; protected ViewHolder() { observationViewHolders = new ArrayList<LinearLayout>(); inflater = LayoutInflater.from(getContext()); } } }