2025-03-01 01:32:49 +03:00

20 lines
271 B
Java

public class Motorcycle extends Vehicle {
protected String engineType;
public Motorcycle () {
super(2012,"Yamaha");
}
public void setEngineType(String engineType) {
this.engineType = engineType;
}
public String getEngineType() {
return engineType;
}
}