Class Person_voll
java.lang.Object
|
+----Person
|
+----Person_voll
- class Person_voll
- extends Person
Klasse, die eine einzelne Person repräsentiert
-
hausnummer
-
-
plz
-
-
straße
-
-
tel
-
-
wohnort
-
-
zusatz
-
-
Person_voll()
- leerer Konstruktor
-
Person_voll(String, String, String, int, int, String)
- Konstruktor ohne Zusatz und Tel
-
Person_voll(String, String, String, int, int, String, String, String)
- Konstruktor unter Angabe aller Daten
-
Person_voll(String[], int)
- Konstruktor mit Angabe aller Daten in einem Array
-
htmlString()
- liefert einen String in Adressform in HTML
-
toString()
- liefert einen String in Adressform
straße
protected String straße
wohnort
protected String wohnort
zusatz
protected String zusatz
tel
protected String tel
plz
protected int plz
hausnummer
protected int hausnummer
Person_voll
public Person_voll()
- leerer Konstruktor
Person_voll
public Person_voll(String n,
String vn,
String s,
int hau,
int p,
String w,
String z,
String t)
- Konstruktor unter Angabe aller Daten
Person_voll
public Person_voll(String n,
String vn,
String s,
int hau,
int p,
String w)
- Konstruktor ohne Zusatz und Tel
Person_voll
public Person_voll(String a[],
int i)
- Konstruktor mit Angabe aller Daten in einem Array
toString
public String toString()
- liefert einen String in Adressform
- Overrides:
- toString in class Person
htmlString
public String htmlString()
- liefert einen String in Adressform in HTML