/** * Created by leon on 1/10/18. */ public class Product { String name; Double price; String id; Integer quantity; public Product(String name, Double price, String id, Integer quantity){ this.name = name; this.price = price; this.id = id; this.quantity = quantity; } public void setName(String name){ this.name = name; } public String getName(){ return this.name; } public void setPrice(double price){ this.price = price; } public Double getPrice(){ return this.price; } public void setID(String id){ this.id = id; } public String getID(){ return this.id; } public void setQuantity(int quantity){ this.quantity = quantity; } public Integer getQuantity(){ return this.quantity; } }