public class Motorsykkel extends Kj?ret?y { protected String motortype; public Motorsykkel(String id, String merke, String modell, int ?r, String motorType) { super(id, merke, modell, ?r); // Superklasse sin konstrukt?r! this.motortype = motorType; } // Hent metdoer public String hentMotortype() { return motortype; } // Sett metoder public void settMotortype(String motortype) { this.motortype = motortype; } }