public boolean hasMethod(String methodName) {
   return foundMethods.contains(methodName);
 }
 public void addMethod(String methodName) {
   foundMethods.add(methodName);
 }