1 package filter;2 3 public interface IFilter {4 String [] filter(String [] values, String prefix);5 }6