Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.rcc2.www.listview;
- public class Mobile {
- private String name;
- private double price;
- private int image;
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public double getPrice() {
- return price;
- }
- public void setPrice(double price) {
- this.price = price;
- }
- public int getImage() {
- return image;
- }
- public void setImage(int image) {
- this.image = image;
- }
- }
Add Comment
Please, Sign In to add comment