Back to project page ArrecebaAndroid.
The source code is released under:
GNU General Public License
If you think the Android project ArrecebaAndroid 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 br.com.projetointegrador.View; /* www . jav a 2 s .com*/ import android.widget.ImageView; import android.widget.TextView; public class ProdutoViewHolder { private TextView textView; private ImageView imageView; public ProdutoViewHolder() {} public ProdutoViewHolder(TextView textView , ImageView imageView) { this.textView = textView; this.imageView = imageView; } public TextView getTextView() { return textView; } public void setTextView(TextView textView) { this.textView = textView; } public ImageView getImageView() { return imageView; } public void setImageView(ImageView imageView) { this.imageView = imageView; } }