blob: 50856ccb13e984f6e4fc9f16c7e870d2bff60661 (
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;
/**
* 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);
}
}
|