aakash2310

Untitled

Sep 30th, 2022
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. package com.prem.myapplication;
  2.  
  3. public class MyListData {
  4.  
  5. String uname;
  6. int imageId;
  7.  
  8. public void MyListClass(String uname, int imgId) {
  9. this.uname = uname;
  10. this.imageId = imgId;
  11. }
  12.  
  13. public String getUname(String uname)
  14. {
  15. return uname;
  16. }
  17. public int getImageId(int imageId)
  18. {
  19. return imageId;
  20. }
  21.  
  22. public void setUname(String uname)
  23. {
  24. this.uname = uname;
  25. }
  26.  
  27. public void setImageId(int imageId)
  28. {
  29. this.imageId = imageId;
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment