class Motorsykkel extends Kj?ret?y{ private String motortype; public Motorsykkel(String id, String merke, String modell, int ?r, String motortype){ super(id, merke, modell, ?r); this.motortype = motortype; } public String getMotortype(){ return motortype; } public void setMotortype(String motortype){ this.motortype = motortype; } }