Class Person_voll

java.lang.Object
   |
   +----Person
           |
           +----Person_voll

class Person_voll
extends Person
Klasse, die eine einzelne Person repräsentiert


Variable Index

 o hausnummer
 o plz
 o straße
 o tel
 o wohnort
 o zusatz

Constructor Index

 o Person_voll()
leerer Konstruktor
 o Person_voll(String, String, String, int, int, String)
Konstruktor ohne Zusatz und Tel
 o Person_voll(String, String, String, int, int, String, String, String)
Konstruktor unter Angabe aller Daten
 o Person_voll(String[], int)
Konstruktor mit Angabe aller Daten in einem Array

Method Index

 o htmlString()
liefert einen String in Adressform in HTML
 o toString()
liefert einen String in Adressform

Variables

 o straße
 protected String straße
 o wohnort
 protected String wohnort
 o zusatz
 protected String zusatz
 o tel
 protected String tel
 o plz
 protected int plz
 o hausnummer
 protected int hausnummer

Constructors

 o Person_voll
 public Person_voll()
leerer Konstruktor

 o 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

 o Person_voll
 public Person_voll(String n,
                    String vn,
                    String s,
                    int hau,
                    int p,
                    String w)
Konstruktor ohne Zusatz und Tel

 o Person_voll
 public Person_voll(String a[],
                    int i)
Konstruktor mit Angabe aller Daten in einem Array

Methods

 o toString
 public String toString()
liefert einen String in Adressform

Overrides:
toString in class Person
 o htmlString
 public String htmlString()
liefert einen String in Adressform in HTML