/** * Eine Person im Sinne unseres Systems identifiziert sich anhand * Name und Telefon-Nummer */ public class Person { protected String name; private String telno; public Person() { } public Person(String name, String telno) { this.name = name; this.telno = telno; } public String getNamensschild() { return "**************************************\n"+ name+ "\n" + "Tel: "+telno +"\n" + "**************************************\n"; } }