Back to project page Android-MyStarterApp.
The source code is released under:
Apache License
If you think the Android project Android-MyStarterApp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package co.kaush.mystarterapp.app.ui.viewholder; /*ww w . ja va2 s . c o m*/ import android.view.View; public abstract class ViewHolder<T> { private View _view; public ViewHolder(View view) { _view = view; } /** * Bind the view from {@link #getView()} with the item param passed in. * * @param item */ public abstract void bind(T... item); public View getView() { return _view; } }