class Kanin{ private String navn; public Kanin(String navn){ this.navn = navn; } public String hentNavn(){ return this.navn; } }