package genLRS; public class CheckEmpty implements IAlgo { public Boolean emptyCase(LRStruct host, Object... input) { return Boolean.TRUE; } public Boolean nonEmptyCase(LRStruct host, Object... input) { return Boolean.FALSE; } }