Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. package com.example.customhorizontalscrollviewexample;
  2.  
  3. public class DataModel
  4. {
  5. private String name;
  6. private int resId;
  7.  
  8. public DataModel(String name, int resId)
  9. {
  10. this.name = name;
  11. this.resId = resId;
  12. }
  13.  
  14. public String getName()
  15. {
  16. return name;
  17. }
  18.  
  19. public void setName(String name)
  20. {
  21. this.name = name;
  22. }
  23.  
  24. public int getResId()
  25. {
  26. return resId;
  27. }
  28.  
  29. public void setResId(int resId)
  30. {
  31. this.resId = resId;
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement