public class Employee { private static int idCounter = 1; private int id; private String name; private Computer computer; public Employee(String name) { this.id = idCounter++; this.name = name; this.computer = null; } public void addComputer(Computer computer) { this.computer = computer; } }