package reflection.targets; /** * A simple class with just a few methods and a second version that adds another method. * * To test the SignatureFinder utility. * * @author kdvolder */ public class SimpleClass { public void method(String m) {} public int method() {return 0;} }