22 lines
306 B
Plaintext
22 lines
306 B
Plaintext
/**
|
|
*
|
|
* Beschreibung
|
|
*
|
|
* @version 1.0 vom 07.05.2025
|
|
* @author
|
|
*/
|
|
|
|
public class Sekretar extends Person {
|
|
|
|
// Anfang Attribute
|
|
private Schuler schuler;
|
|
// Ende Attribute
|
|
|
|
// Anfang Methoden
|
|
public Schuler getSchuler() {
|
|
return schuler;
|
|
}
|
|
|
|
// Ende Methoden
|
|
} // end of Sekretar
|