1 package net.sourceforge.importscrubber; 2 3 /** 4 5 * Defines the behavior of something that wants to be notified when 6 7 * new class references are found 8 9 */ 10 11 public interface IReferenceFoundListener 12 13 { 14 15 public void referenceFound(String className); 16 17 } 18 19 20 21 22 23 24 25 26 27 28 29