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