class Motorsykkel extends Kjoretoy{
private String motortype;
Motorsykkel(String id, String mrk, String modell, int ar, String motor ){
super(id, mrk, modell, ar);
motortype = motor;
}
public void settMotortype(String ny){
motortype = ny;
}
public String hentMotortype(){
return motortype;
}
}