001 package net.sourceforge.retroweaver.event; 002 003 /** 004 * A callback interface to indicate weaving status. 005 */ 006 public interface WeaveListener { 007 void weavingStarted(String msg); 008 009 void weavingPath(String sourcePath); 010 011 void weavingCompleted(String msg); 012 013 void weavingError(String msg); 014 015 }