abstract class Bil { protected String regNr; public Bil(String regNr) { this.regNr = regNr; } public abstract String hentInfo(); }