Create a class called Bike that inherits the Vehicle class.
Create a class called MotorBike that inherits the Bike class.
Overide the toString of the Bike, and MotorBike class
The Bike class should have overloaded constructors, at least two.
The Bike class should override at least on method.
Create multiple objects of the MotorVehicle class and populate them with data.
The data should captured from a panel constructed using JFrame, and JPanel.
I have created, a bike class that extends vehicle and I created MotorBike that extends Bike.
That’s about all I know how to do. Any help would be cool thanks