class Motorsykkel extends Kjoretoy{
private String motortype;
Motorsykkel(String ID, String merke, String modell, int aar, String motortype ){
super(ID, merke, modell, aar);
this.motortype = motortype;
}
public void settMotortype(String ny){
motortype = ny;
}
public String hentMotortype(){
return motortype;
}
}