public class Items{ static int id; static String name; public Items(int id, String name){ this.id = id; this.name = name; } }