Advertisement
Guest User

Product

a guest
Jan 23rd, 2020
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.68 KB | None | 0 0
  1. package com.dicoding.submission.asusrog;
  2.  
  3. public class Product {
  4.     public String tipeLaptop;
  5.     public String fotoLaptop;
  6.     public String detailLaptop;
  7.  
  8.     public String getTipeLaptop() {
  9.         return tipeLaptop;
  10.     }
  11.  
  12.     public void setTipeLaptop(String tipeLaptop) {
  13.         this.tipeLaptop = tipeLaptop;
  14.     }
  15.  
  16.     public String getFotoLaptop() {
  17.         return fotoLaptop;
  18.     }
  19.  
  20.     public void setFotoLaptop(String fotoLaptop) {
  21.         this.fotoLaptop = fotoLaptop;
  22.     }
  23.  
  24.     public String getDetailLaptop() {
  25.         return detailLaptop;
  26.     }
  27.     public void setDetailLaptop(String detailLaptop) {
  28.         this.detailLaptop = detailLaptop;
  29.     }
  30.  
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement