ZazoTazo

Mobile

Jul 31st, 2019
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.54 KB | None | 0 0
  1. package com.rcc2.www.listview;
  2.  
  3. public class Mobile {
  4.     private String name;
  5.     private double price;
  6.     private int image;
  7.  
  8.     public String getName() {
  9.         return name;
  10.     }
  11.  
  12.     public void setName(String name) {
  13.         this.name = name;
  14.     }
  15.  
  16.     public double getPrice() {
  17.         return price;
  18.     }
  19.  
  20.     public void setPrice(double price) {
  21.         this.price = price;
  22.     }
  23.  
  24.     public int getImage() {
  25.         return image;
  26.     }
  27.  
  28.     public void setImage(int image) {
  29.         this.image = image;
  30.     }
  31. }
Add Comment
Please, Sign In to add comment