package clist; public interface IAlgo { public Object emptyCase(CList host, Object input); public Object nonEmptyCase(CList host, Object input); }