1 package net.sf.jour.instrumentor; 2 3 import java.util.List; 4 5 import net.sf.jour.InterceptorException; 6 7 public interface InstrumentorResults { 8 9 /** 10 * @return Returns true if any modification has been made to the class. 11 */ 12 public boolean isModified(); 13 14 /** 15 * @return List<CtClass> of created classes, may be empty. 16 * @throws InterceptorException 17 */ 18 public List getCreatedClasses(); 19 20 public long getCountCounstructors(); 21 22 public long getCountMethods(); 23 }