summaryrefslogtreecommitdiffstats
path: root/src/de/fhswf/in/inf/java1/aufgabe05/Student.java
blob: 9963af91fb4c41c66dcb12614a7acb459a0e678e (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.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);
   }

}