1 package net.server.servlets; 2 3 /** 4 * LineConsumer Interface 5 */ 6 7 public interface LineConsumer { 8 9 String[] getValues(String s, int column[]); 10 11 } 12 13