public class Item { String name = "untitled"; double price = 0; public Item(String name, Double price) { this.name = name; this.price = price; } }