source: Java_Quellcode_SOOP_Vorlesung/oop/Mitarbeiter.java

Last change on this file was 417, checked in by tr, 6 years ago
File size: 913 bytes
Line 
1package eu.hsrw.tr.prog.vl.oop;
2
3public class Mitarbeiter extends Person {
4
5    // Personalnummer
6    private String personalNr;
7   
8    // Konstruktoren
9    public Mitarbeiter() {}
10   
11    public Mitarbeiter(String vorname, String nachname, int t, int m, int j, String personalNr) {
12        super(vorname, nachname, t, m, j);
13        this.personalNr = personalNr;
14    }
15
16    public Mitarbeiter(Mitarbeiter mitarbeiter) {
17        super(mitarbeiter);
18        this.personalNr = mitarbeiter.personalNr;
19    }
20
21    // Getter
22    // public Attributtyp get_A_ttributname()
23    public String getPersonalNr() {
24        return this.personalNr;
25    }
26   
27    // Setter
28    // public void set_A_ttributname(Attributtyp parameter)
29    public void setPersonalNr(String personalNr) {
30        this.personalNr = personalNr;
31    }
32/**/   
33    // toString
34    public String toString() {
35        // Vorname Name (Matrikelnummer)
36        return super.toString() + " (" + this.personalNr + ")";
37    }
38/**/
39}
Note: See TracBrowser for help on using the repository browser.