blob: 769c91ad28828913c740484597deac1d32bc84e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/**
*
*/
package de.fhswf.in.inf.java1.aufgabe5;
/**
* 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);
}
}
|