public class Item { public final String name; public String description; public Action action; public Item(String name) { this.name = name; } }