import java.util.List; public interface Partitioner { /** * Geeft alle partities van getal terug. */ public List partitions(int sum); }