01: package demo.data;
02:
03: public class Item {
04: private String name;
05: private float price;
06: private int quantity;
07:
08: public Item(String aName, float aPrice, int aQuantity) {
09: name = aName;
10: price = aPrice;
11: quantity = aQuantity;
12: }
13:
14: public String getName() {
15: return name;
16: }
17:
18: public float getPrice() {
19: return price;
20: }
21:
22: public int getQuantity() {
23: return quantity;
24: }
25: }
|