package org.bootcamp.TrafficLights; import java.awt.Color; public class Yellowlight extends Light { Yellowlight() { super(2, Color.YELLOW); } }