package class9_1_ComputerBuilder_start; public class Part extends Component{ private String name; // name of this Part private double price; // price of this Part public void add(Component c) { } public void remove (Component c) { } Part(String name, double price) { this.name = name; this.price = price; } public String getName() { return name; } public double getPrice() { return price; } }