abstract class Motorvogn { protected String sjofor; protected String regNr; public Motorvogn(String s, String regNr) { sjofor = s; this.regNr = regNr; } }