public class Leverancier { private String naam; public Leverancier(String naam){ this.naam = naam; } public String getNaam(){ return naam; } }