public class Test {
  public void showMethods() {
    // oben angegebener Code
  }
   // deine Methoden
   public static void main(String [] args) {
    new Test().showMethods();
   }
}sorry, aber schau dir erstmal ein paar Java Bücher an...k4hvd hat gesagt.:dann heißt es:
invalid method declaration; return type required :cry: :cry:
Class testClass = Test.class;
Method[] methods = testClass.getGet...