public class Motorsykkel extends Kjoretoy { String motorType; public Motorsykkel(String id, String merke, String modell, int aar, String motorType){ super(id,merke,modell,aar); this.motorType = motorType; } public String hentMotorType(){ return motorType; } public void settMotorType(String motorType){ this.motorType = motorType; } }