/** * */ package de.fhswf.in.inf.java1.aufgabe05; /** * Extends Person and represents a student. * * @author $Author: $ * @version $Revision: $, $Date: $ UTC */ public class Student extends Person { /** * Simply calls the super constructor to initialize person. * * @param vorname * First name of the student * @param nachname * Last name of the student */ public Student(String vorname, String nachname) { super(vorname, nachname); } }