1 /** 2 * Created by IntelliJ IDEA. 3 * User: dlyon 4 * Date: Feb 25, 2004 5 * Time: 6:30:28 PM 6 * To change this template use Options | File Templates. 7 */ 8 package futils; 9 10 public interface LineProcessor { 11 public void process(String l); 12 } 13