public class GrafiskNovelle extends Bok { private String illustratoer; private int antBilder; public GrafiskNovelle(long isbn, String tittel, String forfatter, int aar, int sider, String ill, int bilder) { super(isbn, tittel, forfatter, aar, sider); illustratoer = ill; antBilder = bilder; } }