/** * */ package de.fhswf.in.inf.java1.aufgabe5; /** * TODO Add comment here * * @author $Author: $ * @version $Revision: $, $Date: $ UTC */ public class Student extends Person { /** * TODO Add constructor comment here * * @param vorname * First name of the student * @param nachname * Last name of the student */ public Student(String vorname, String nachname) { super(vorname, nachname); } }