Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.prem.myapplication;
- public class MyListData {
- String uname;
- int imageId;
- public void MyListClass(String uname, int imgId) {
- this.uname = uname;
- this.imageId = imgId;
- }
- public String getUname(String uname)
- {
- return uname;
- }
- public int getImageId(int imageId)
- {
- return imageId;
- }
- public void setUname(String uname)
- {
- this.uname = uname;
- }
- public void setImageId(int imageId)
- {
- this.imageId = imageId;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment