1 package demo.data; 2 3 public class Item 4 { 5 private String name; 6 private float price; 7 private int quantity; 8 9 public Item (String aName, float aPrice, int aQuantity) { 10 name = aName; 11 price = aPrice; 12 quantity = aQuantity; 13 } 14 15 public String getName() { 16 return name; 17 } 18 19 public float getPrice() { 20 return price; 21 } 22 23 public int getQuantity () { 24 return quantity; 25 } 26 } 27 | Popular Tags |