package be.brainbaking.sorting; import java.util.List; public interface Sortable { List sort(List list); }