diff options
Diffstat (limited to 'src/de/fhswf/in/inf/java1/aufgabe05/Student.java')
| -rw-r--r-- | src/de/fhswf/in/inf/java1/aufgabe05/Student.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/de/fhswf/in/inf/java1/aufgabe05/Student.java b/src/de/fhswf/in/inf/java1/aufgabe05/Student.java new file mode 100644 index 0000000..9963af9 --- /dev/null +++ b/src/de/fhswf/in/inf/java1/aufgabe05/Student.java @@ -0,0 +1,28 @@ +/** + * + */ +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); + } + +} |
