Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. package com.example.dd.CustomAdapterApp;
  2.  
  3. public class Product {
  4. String textView1, textView2, textView3;
  5.  
  6. public String getTextView1() {return textView1;}
  7. public String getTextView2() {return textView2;}
  8. public String getTextView3() {return textView3;}
  9.  
  10. public void setTextView1(String textView1) {this.textView1 = textView1;}
  11. public void setTextView2(String textView2) {this.textView2 = textView2;}
  12. public void setTextView3(String textView3) {this.textView3 = textView3;}
  13.  
  14. public Product(String textView1, String textView2, String textView3) {
  15. this.textView1 = textView1;
  16. this.textView2 = textView2;
  17. this.textView3 = textView3;
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement