public class Cat extends Animal { public Cat (String n) { super (n); } public void printInformation () { System.out.println("Ich bin eine Katze"); //super.printInformation (); System.out.println("Mein Name ist: " + getName()); } public void catchMouse () { AscIIArts.dumpCatCatchingMouse (); } }