1 package net.logAnalyzer; 2 3 /*** 4 * @author David Vicente 5 */ 6 7 public interface LogAnalyzerBatchListener { 8 9 public void reportCurrentTask(String currentTask); 10 11 public void reportPercent(int percent); 12 }