/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package mytime.bll; import java.util.List; import javafx.scene.Node; /** * * @author Stefan-VpcEB3J1E */ public interface SortingStrategy { public List<Node> sort(List<Node> listToSort); }