import java.lang.reflect.*; public class callAllMethods { public static void callAllMethods(Object obj){ try{ Class c = obj.getClass(); Method[] methods = c.getMethods(); for (int i = 0; i