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